Line | |
---|
1 | # $Id: APIImport.mak,v 1.2 2002-02-12 07:01:49 bird Exp $
|
---|
2 |
|
---|
3 | #
|
---|
4 | # Odin32 API
|
---|
5 | #
|
---|
6 | # APIImport.exe makefile
|
---|
7 | #
|
---|
8 |
|
---|
9 |
|
---|
10 | #
|
---|
11 | # Macro which defines the tools common directory.
|
---|
12 | #
|
---|
13 | ODIN32_TCOMMON = ..\common
|
---|
14 | ODIN32_BIN = $(ODIN32_TOOLS)
|
---|
15 |
|
---|
16 |
|
---|
17 | #
|
---|
18 | # Tell that we're producing an vio executable.
|
---|
19 | # Tell buildenvironment that we like to use static linked CRT.
|
---|
20 | # Tell that we're not to be copied to /bin.
|
---|
21 | # Tell that the makefile has another name.
|
---|
22 | #
|
---|
23 | EXETARGET = 1
|
---|
24 | VIO = 1
|
---|
25 | STATIC_CRT = 1
|
---|
26 | NO_MAIN_BIN_COPY = 1
|
---|
27 | MAKEFILE = APIImport.mak
|
---|
28 |
|
---|
29 |
|
---|
30 | #
|
---|
31 | # Compiler, tools, and interference rules.
|
---|
32 | #
|
---|
33 | !include ../../makefile.inc
|
---|
34 | !include $(ODIN32_TCOMMON)/common.mk
|
---|
35 |
|
---|
36 |
|
---|
37 | #
|
---|
38 | # Addjustments..
|
---|
39 | #
|
---|
40 | CINCLUDES= -I$(ODIN32_INCLUDE) -I$(ODIN32_INCLUDE)\win -Igd -Imysql -I..\common
|
---|
41 | !ifdef DEBUG
|
---|
42 | CDEFINES = $(CDEFINES) -DNO_CLIENT_LONG_LONG -DDEBUG_ALLOC
|
---|
43 | !else
|
---|
44 | CDEFINES = $(CDEFINES) -DNO_CLIENT_LONG_LONG
|
---|
45 | !endif
|
---|
46 |
|
---|
47 |
|
---|
48 | #
|
---|
49 | # Object files. Prefix with OBJDIR and one space before the '\'.
|
---|
50 | #
|
---|
51 | OBJS = \
|
---|
52 | $(OBJDIR)\APIImport.obj \
|
---|
53 | $(OBJDIR)\db.obj
|
---|
54 |
|
---|
55 |
|
---|
56 | #
|
---|
57 | # Libraries. One space before the '\'.
|
---|
58 | #
|
---|
59 | LIBS = \
|
---|
60 | $(COMMONLIB) \
|
---|
61 | $(RTLLIB) \
|
---|
62 | $(ODIN32_LIB)\mysql.lib \
|
---|
63 | os2386.lib
|
---|
64 |
|
---|
65 |
|
---|
66 | #
|
---|
67 | # Target name - name of the dll without extention and path.
|
---|
68 | #
|
---|
69 | TARGET = APIImport
|
---|
70 |
|
---|
71 |
|
---|
72 | #
|
---|
73 | # Includes the common rules.
|
---|
74 | #
|
---|
75 | !include $(ODIN32_POST_INC)
|
---|
76 | !include $(ODIN32_TCOMMON_POST_INC)
|
---|
77 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.