summaryrefslogtreecommitdiff
path: root/BCC_MAKEFILE
blob: f6398c1ddfea2e6a3ce9862962dea1ff321854dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Makefile for Borland C++ 5.5 on NT
#
bc=	   c:\Borland\BCC55
bcbin=	   $(bc)\bin
bclib=	   $(bc)\lib
bcinclude= $(bc)\include

gcinclude1 = .\include

cc=	 $(bcbin)\bcc32
rc=	 $(bcbin)\brc32
lib=	 $(bcbin)\tlib
link=	 $(bcbin)\ilink32
cflags=  -O2 -R -v- -vi -H -H=gc.csm -I$(bcinclude);$(gcinclude1) -L$(bclib) \
	 -w-pro -w-aus -w-par -w-ccc -w-inl -w-rch -a4
defines= -DALL_INTERIOR_POINTERS -DNO_EXECUTE_PERMISSION \
     -DENABLE_DISCLAIM -DGC_ATOMIC_UNCOLLECTABLE -DJAVA_FINALIZATION \
     -DGC_GCJ_SUPPORT -DGC_OPERATOR_NEW_ARRAY -DUSE_MUNMAP

.c.obj:
	$(cc) @&&|
	$(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.c
|

.cpp.obj:
	$(cc) @&&|
	$(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.cpp
|

.rc.res:
	$(rc) -i$(bcinclude) -r -fo$* $*.rc

XXXOBJS= XXXalloc.obj XXXreclaim.obj XXXallchblk.obj XXXmisc.obj \
    XXXmach_dep.obj XXXos_dep.obj XXXmark_rts.obj XXXheaders.obj XXXmark.obj \
    XXXobj_map.obj XXXblacklst.obj XXXfinalize.obj XXXnew_hblk.obj \
    XXXdbg_mlc.obj XXXmalloc.obj XXXdyn_load.obj \
    XXXtypd_mlc.obj XXXptr_chck.obj XXXgc_cpp.obj XXXmallocx.obj \
    XXXfnlz_mlc.obj XXXgcj_mlc.obj

OBJS= $(XXXOBJS:XXX=)

all: gctest.exe cord\de.exe test_cpp.exe

$(OBJS) test.obj: include\private\gc_priv.h include\private\gc_hdrs.h include\gc.h include\private\gcconfig.h MAKEFILE

gc.lib: $(OBJS)
	-del gc.lib
	$(lib) $* @&&|
	$(XXXOBJS:XXX=+)
|

gctest.exe: tests\test.obj gc.lib
	$(cc) @&&|
	$(cflags) -W -e$* tests\test.obj gc.lib
|

cord\tests\de.obj cord\tests\de_win.obj: include\cord.h \
    include\cord_pos.h cord\tests\de_win.h cord\tests\de_cmds.h

cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\tests\de.obj \
    cord\tests\de_win.obj cord\tests\de_win.res gc.lib
	$(cc) @&&|
	$(cflags) -W -e$* cord\cordbscs.obj cord\cordxtra.obj \
	cord\tests\de.obj cord\tests\de_win.obj gc.lib
|
	$(rc) cord\tests\de_win.res cord\de.exe

gc_cpp.obj: gc_cpp.cc include\gc_cpp.h include\gc.h

test_cpp.cpp: tests\test_cpp.cc
	copy tests\test_cpp.cc test_cpp.cpp

test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc.lib
	$(cc) @&&|
	$(cflags) -W -e$* test_cpp.obj gc.lib
|

clean:
	-del *.obj *.res *.exe *.csm cord\*.obj cord\*.res cord\*.exe cord\*.csm
	-del cord\*.tds cord\tests\*.obj cord\tests\*.res
	-del *.log *.tds gc.lib tests\test.obj "gc.#0*"