1 | # $Id: makefile,v 1.8 2000-03-06 23:38:55 bird Exp $
|
---|
2 |
|
---|
3 | #
|
---|
4 | # Odin32 API
|
---|
5 | #
|
---|
6 | # psapi.dll makefile
|
---|
7 | #
|
---|
8 |
|
---|
9 | # Directory macros.
|
---|
10 | PDWIN32_INCLUDE = ..\..\include
|
---|
11 | PDWIN32_LIB = ..\..\lib
|
---|
12 | PDWIN32_BIN = ..\..\$(OBJDIR)
|
---|
13 | PDWIN32_TOOLS = ..\..\tools\bin
|
---|
14 |
|
---|
15 |
|
---|
16 | # Compiler, tools, and interference rules.
|
---|
17 | !include $(PDWIN32_INCLUDE)/pdwin32.mk
|
---|
18 |
|
---|
19 |
|
---|
20 | # Flag overloads and local macros.
|
---|
21 | CLEANEXTRAS = psapirsrc.asm
|
---|
22 |
|
---|
23 |
|
---|
24 | # Object files. All objects should be prefixed with $(OBJDIR)!
|
---|
25 | OBJS = \
|
---|
26 | $(OBJDIR)\psapi.obj \
|
---|
27 | $(OBJDIR)\psapirsrc.obj \
|
---|
28 | $(PDWIN32_LIB)/dllentry.obj
|
---|
29 |
|
---|
30 |
|
---|
31 | # Target name - name of the dll without extention and path.
|
---|
32 | TARGET = psapi
|
---|
33 |
|
---|
34 |
|
---|
35 | # All rule - build objs, target dll, copies dll to bin and makes libs.
|
---|
36 | all: $(OBJDIR) \
|
---|
37 | $(OBJDIR)\$(TARGET).dll \
|
---|
38 | $(PDWIN32_BIN)\$(TARGET).dll \
|
---|
39 | lib
|
---|
40 |
|
---|
41 |
|
---|
42 | # Lib rule - build importlibrary (and evt. other libs)
|
---|
43 | lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib
|
---|
44 |
|
---|
45 |
|
---|
46 | # Dll rule - builds the target dll.
|
---|
47 | $(OBJDIR)\$(TARGET).dll: $(OBJS) $(TARGET).def $(OBJDIR)\$(TARGET).lrf
|
---|
48 | $(LD2) $(LD2FLAGS) @$(OBJDIR)\$(TARGET).lrf
|
---|
49 |
|
---|
50 |
|
---|
51 | # Linker file - creates the parameter file passed on to the linker.
|
---|
52 | $(OBJDIR)\$(TARGET).lrf: makefile
|
---|
53 | @echo Creating file <<$@
|
---|
54 | /OUT:$(OBJDIR)\$(TARGET).dll
|
---|
55 | /MAP:$(OBJDIR)\$(TARGET).map
|
---|
56 | $(OBJS)
|
---|
57 | $(PDWIN32_LIB)/kernel32.lib
|
---|
58 | $(PDWIN32_LIB)/odincrt.lib
|
---|
59 | OS2386.LIB
|
---|
60 | $(RTLLIB_O)
|
---|
61 | $(TARGET).def
|
---|
62 | <<keep
|
---|
63 |
|
---|
64 |
|
---|
65 | # Dep rule - makes depenencies for C, C++ and Asm files.
|
---|
66 | dep:
|
---|
67 | $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \
|
---|
68 | *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h
|
---|
69 |
|
---|
70 |
|
---|
71 | # Includes the common rules.
|
---|
72 | !include $(PDWIN32_INCLUDE)/pdwin32.post
|
---|
73 |
|
---|