Changeset 4712 for trunk/tools/database
- Timestamp:
- Dec 3, 2000, 12:27:03 AM (25 years ago)
- Location:
- trunk/tools/database
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/Makefile
r4332 r4712 1 # $Id: Makefile,v 1.1 4 2000-09-28 03:06:27bird Exp $1 # $Id: Makefile,v 1.15 2000-12-02 23:26:58 bird Exp $ 2 2 3 3 # … … 6 6 7 7 # include common definitions 8 PDWIN32_INCLUDE = ..\..\include 9 PDWIN32_TOOLS = ..\bin 10 !include ..\..\include\pdwin32.mk 8 ODIN32_TCOMMON = ..\common 9 ODIN32_BIN = $(ODIN32_TOOLS) 10 !include ../../makefile.inc 11 !include $(ODIN32_TCOMMON)/common.mk 11 12 12 13 # Addjust common definitions 13 CINCLUDES= -I$( PDWIN32_INCLUDE) -I$(PDWIN32_INCLUDE)\win -Igd -Imysql -I..\common14 CINCLUDES= -I$(ODIN32_INCLUDE) -I$(ODIN32_INCLUDE)\win -Igd -Imysql -I..\common 14 15 !ifdef DEBUG 15 16 CFLAGS = $(CFLAGS) -Ge+ -Tx+ -Tm- $(CINCLUDES) -DNO_CLIENT_LONG_LONG -Wall+ppt-ppc-inl-cnv-gnr-vft- -Gh+ -DDEBUG_ALLOC … … 35 36 # APIImport 36 37 # 37 APIImport.exe: APIImport.obj db.obj ..\common\commonicc.libmysql\libmysqlclient.lib38 APIImport.exe: APIImport.obj db.obj $(COMMONLIB) mysql\libmysqlclient.lib 38 39 $(LD) $(LDFLAGS) $** 39 40 40 41 ..\bin\APIImport.exe: APIImport.exe 41 42 $(CP) $** $@ 42 43 ..\common\commonicc.lib:44 cd ..\common45 nmake /nologo commonicc.lib46 cd ..\database47 43 48 44 … … 70 66 71 67 gd\gdicc.lib: force 72 @cd gd 73 @nmake /nologo gdicc.lib 74 @cd .. 75 68 $(DODIRS) "gd" $(MAKE_CMD) gdicc.lib 76 69 77 70 … … 111 104 # 112 105 dep: 113 $(DEPEND) $(CINCLUDES) -o- *.h *.asm *.inc $( PDWIN32_INCLUDE)\*.h \106 $(DEPEND) $(CINCLUDES) -o- *.h *.asm *.inc $(ODIN32_INCLUDE)\*.h \ 114 107 *.c *.cpp -objo *.c *.cpp 115 cd gd 116 @nmake /nologo dep 117 cd .. 108 $(DODIRS) "gd" $(MAKE_CMD) dep 118 109 119 110 … … 124 115 clean: 125 116 $(RM) *.obj *.lib *.o *.a *.dll *.exe *.pch *.log *.map *.html 126 cd gd 127 $(MAKE) /nologo clean 128 cd .. 117 $(DODIRS) "gd" $(MAKE_CMD) clean 129 118 130 119 … … 147 136 force: 148 137 @$(ECHO) ... 138 139 140 # 141 # Common rules. 142 # 143 !include $(ODIN32_TCOMMON_POST_INC) 144 -
trunk/tools/database/gd/Makefile
r4332 r4712 11 11 all: gdgcc.a gdgcc.lib gdicc.lib 12 12 13 PDWIN32_TOOLS = ..\..\bin 14 PDWIN32_INCLUDE = ..\..\..\include 15 !include ..\..\..\include\pdwin32.tools 13 ODIN32_TOOLS = ../../bin 14 !include ../../../makefile.inc 16 15 17 16 gdgcc.a: force -
trunk/tools/database/gd/Makefile.gcc
r4332 r4712 8 8 #for your system. 9 9 10 PDWIN32_INCLUDE = ..\..\..\include 11 PDWIN32_TOOLS = ..\..\bin 12 !include $(PDWIN32_INCLUDE)\pdwin32.mk 10 ODIN32_TOOLS = ..\..\bin 11 !include ../../../makefile.inc 13 12 14 13 CC=gcc -
trunk/tools/database/gd/Makefile.icc
r4332 r4712 9 9 10 10 11 PDWIN32_INCLUDE = ..\..\..\include 12 PDWIN32_TOOLS = ..\..\bin 13 !include $(PDWIN32_INCLUDE)\pdwin32.mk 11 ODIN32_TOOLS = ..\..\bin 12 !include ../../../makefile.inc 14 13 15 14 -
trunk/tools/database/makefile.gcc
r2770 r4712 1 # $Id: makefile.gcc,v 1. 2 2000-02-12 23:54:30bird Exp $1 # $Id: makefile.gcc,v 1.3 2000-12-02 23:26:59 bird Exp $ 2 2 3 3 # … … 6 6 7 7 # common include directory 8 PDWIN32_INCLUDE = ..\..\include9 PDWIN32_TOOLS = ..\bin10 !include $( PDWIN32_INCLUDE)\pdwin32.tools8 ODIN32_INCLUDE = ..\..\include 9 ODIN32_TOOLS = ..\bin 10 !include $(ODIN32_INCLUDE)\odin32.tools 11 11 12 12 !ifndef OMF … … 34 34 35 35 CDEFINES = -D__WIN32OS2__ -D__WINE__ -DNOTDLL 36 CINCLUDES = -I$( PDWIN32_INCLUDE)\Win -I$(PDWIN32_INCLUDE) -Imysql -Igd -I..\common36 CINCLUDES = -I$(ODIN32_INCLUDE)\Win -I$(ODIN32_INCLUDE) -Imysql -Igd -I..\common 37 37 # Note: Add -fhandle-exceptions if old gcc version. 38 38 !ifndef DEBUG … … 159 159 # 160 160 dep: 161 $(DEPEND) $(CINCLUDES) *.h *.asm *.inc $( PDWIN32_INCLUDE)\*.h \161 $(DEPEND) $(CINCLUDES) *.h *.asm *.inc $(ODIN32_INCLUDE)\*.h \ 162 162 *.c *.cpp -objo *.c *.cpp 163 163 cd gd
Note:
See TracChangeset
for help on using the changeset viewer.