1 # Makefile for Borland C++ 5.5 on NT
\r
2 # If you have the Borland assembler, remove "-DUSE_GENERIC"
\r
7 bcinclude= $(bc)\include
\r
9 gcinclude1 = $(bc)\gc6.2\include
\r
10 gcinclude2 = $(bc)\gc6.2\cord
\r
15 link= $(bcbin)\ilink32
\r
16 cflags= -O2 -R -v- -vi -H -H=gc.csm -I$(bcinclude);$(gcinclude1);$(gcinclude2) -L$(bclib) \
\r
17 -w-pro -w-aus -w-par -w-ccc -w-rch -a4 -D__STDC__=0
\r
19 defines= -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC -DNO_GETENV -DJAVA_FINALIZATION -DGC_OPERATOR_NEW_ARRAY
\r
23 $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.c
\r
28 $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.cpp
\r
32 $(rc) -i$(bcinclude) -r -fo$* $*.rc
\r
34 XXXOBJS= XXXalloc.obj XXXreclaim.obj XXXallchblk.obj XXXmisc.obj \
\r
35 XXXmach_dep.obj XXXos_dep.obj XXXmark_rts.obj XXXheaders.obj XXXmark.obj \
\r
36 XXXobj_map.obj XXXblacklst.obj XXXfinalize.obj XXXnew_hblk.obj \
\r
37 XXXdbg_mlc.obj XXXmalloc.obj XXXstubborn.obj XXXdyn_load.obj \
\r
38 XXXtypd_mlc.obj XXXptr_chck.obj XXXgc_cpp.obj XXXmallocx.obj
\r
40 OBJS= $(XXXOBJS:XXX=)
\r
42 all: gctest.exe cord\de.exe test_cpp.exe
\r
44 $(OBJS) test.obj: include\private\gc_priv.h include\private\gc_hdrs.h include\gc.h include\private\gcconfig.h MAKEFILE
\r
52 gctest.exe: tests\test.obj gc.lib
\r
54 $(cflags) -W -e$* tests\test.obj gc.lib
\r
57 cord\de.obj cord\de_win.obj: include\cord.h include\private\cord_pos.h cord\de_win.h \
\r
60 cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj \
\r
61 cord\de_win.res gc.lib
\r
63 $(cflags) -W -e$* cord\cordbscs.obj cord\cordxtra.obj \
\r
64 cord\de.obj cord\de_win.obj gc.lib
\r
66 $(rc) cord\de_win.res cord\de.exe
\r
68 gc_cpp.obj: include\gc_cpp.h include\gc.h
\r
70 gc_cpp.cpp: gc_cpp.cc
\r
71 copy gc_cpp.cc gc_cpp.cpp
\r
73 test_cpp.cpp: tests\test_cpp.cc
\r
74 copy tests\test_cpp.cc test_cpp.cpp
\r
76 test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc.lib
\r
78 $(cflags) -W -e$* test_cpp.obj gc.lib
\r
82 -del *.obj *.res *.exe *.csm cord\*.obj cord\*.res cord\*.exe cord\*.csm
\r