Attempting to build Quake and Doom for ARM. Let's see what happens.
[AROS-Contrib.git] / gc / BCC_MAKEFILE
blob8121127dbb99e11a83b9ab9b590bea88c5199e52
1 # Makefile for Borland C++ 4.5 on NT
2 # For Borland 5.0, replace bc45 by bc5.
3 # If you have the Borland assembler, remove "-DUSE_GENERIC"
5 bc=        c:\bc45
6 bcbin=     $(bc)\bin
7 bclib=     $(bc)\lib
8 bcinclude= $(bc)\include
10 cc=      $(bcbin)\bcc32
11 rc=      $(bcbin)\brc32
12 lib=     $(bcbin)\tlib
13 link=    $(bcbin)\tlink32
14 cflags=  -R -v -vi -H -H=gc.csm -I$(bcinclude);cord -L$(bclib) \
15          -w-pro -w-aus -w-par -w-ccc -w-rch -a4 -D__STDC__=0
16 #defines= -DSILENT
17 defines= -DSMALL_CONFIG -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC
19 .c.obj:
20         $(cc) @&&|
21         $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.c
24 .cpp.obj:
25         $(cc) @&&|
26         $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.cpp
29 .rc.res:
30     $(rc) -i$(bcinclude) -r -fo$* $*.rc
32 XXXOBJS= XXXalloc.obj XXXreclaim.obj XXXallchblk.obj XXXmisc.obj \
33     XXXmach_dep.obj XXXos_dep.obj XXXmark_rts.obj XXXheaders.obj XXXmark.obj \
34     XXXobj_map.obj XXXblacklst.obj XXXfinalize.obj XXXnew_hblk.obj \
35     XXXdbg_mlc.obj XXXmalloc.obj XXXstubborn.obj XXXdyn_load.obj \
36     XXXtypd_mlc.obj XXXptr_chck.obj XXXgc_cpp.obj XXXmallocx.obj
38 OBJS= $(XXXOBJS:XXX=)
40 all: gctest.exe cord\de.exe test_cpp.exe
42 $(OBJS) test.obj: gc_priv.h gc_hdrs.h gc.h gcconfig.h MAKEFILE
44 gc.lib: $(OBJS)
45     -del gc.lib
46         tlib $* @&&|
47         $(XXXOBJS:XXX=+)
50 gctest.exe: tests\test.obj gc.lib
51     $(cc) @&&|
52         $(cflags) -W -e$* tests\test.obj gc.lib
55 cord\de.obj cord\de_win.obj: cord\cord.h cord\private\cord_pos.h cord\de_win.h \
56     cord\de_cmds.h
58 cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj \
59         cord\de_win.res gc.lib
60         $(cc) @&&|
61         $(cflags) -W -e$* cord\cordbscs.obj cord\cordxtra.obj \
62         cord\de.obj cord\de_win.obj gc.lib
64     $(rc) cord\de_win.res cord\de.exe
66 gc_cpp.obj: gc_cpp.h gc.h
68 gc_cpp.cpp: gc_cpp.cc
69         copy gc_cpp.cc gc_cpp.cpp
71 test_cpp.cpp: tests\test_cpp.cc
72         copy tests\test_cpp.cc test_cpp.cpp
74 test_cpp.exe: test_cpp.obj gc_cpp.h gc.h gc.lib
75     $(cc) @&&|
76         $(cflags) -W -e$* test_cpp.obj gc.lib
79 scratch:
80     -del *.obj *.res *.exe *.csm cord\*.obj cord\*.res cord\*.exe cord\*.csm