30c3de1ffb
* BCC_MAKEFILE: Merge with GC 6.3alpha1 release. * ChangeLog: Likewise. * Makefile.am: Likewise. * Makefile.direct: Likewise. * Makefile.dj: Likewise. * allchblk.c: Likewise. * alloc.c: Likewise. * backgraph.c: Likewise. * configure.host: Likewise. * configure.in: Likewise. * dbg_mlc.c: Likewise. * dyn_load.c: Likewise. * finalize.c: Likewise. * gc_cpp.cc: Likewise. * gc_dlopen.c: Likewise. * gcj_mlc.c: Likewise. * if_mach.c: Likewise. * mach_dep.c: Likewise. * malloc.c: Likewise. * mallocx.c: Likewise. * mark.c: Likewise. * mark_rts.c: Likewise. * misc.c: Likewise. * os_dep.c: Likewise. * ptr_chck.c: Likewise. * reclaim.c: Likewise. * solaris_pthreads.c: Likewise. * solaris_threads.c: Likewise. * sparc_mach_dep.S: Likewise. * threadlibs.c: Likewise. * typd_mlc.c: Likewise. * version.h: Likewise. * win32_threads.c: Likewise. * Mac_files/MacOS_Test_config.h: Likewise. * Mac_files/MacOS_config.h: Likewise. * cord/cordbscs.c: Likewise. * cord/cordprnt.c: Likewise. * cord/de_win.c: Likewise. * doc/README: Likewise. * doc/README.MacOSX: Likewise. * doc/README.changes: Likewise. * doc/README.environment: Likewise. * doc/README.ews4800: Likewise. * doc/README.linux: Likewise. * doc/README.macros: Likewise. * doc/README.win32: Likewise. * doc/debugging.html: Likewise. * doc/gcdescr.html: Likewise. * doc/tree.html: Likewise. * include/Makefile.in: Likewise. * include/gc.h: Likewise. * include/gc_cpp.h: Likewise. * include/gc_local_alloc.h: Likewise. * include/gc_mark.h: Likewise. * include/gc_pthread_redirects.h: Likewise. * include/gc_typed.h: Likewise. * include/new_gc_alloc.h: Likewise. * include/private/dbg_mlc.h: Likewise. * include/private/gc_hdrs.h: Likewise. * include/private/gc_locks.h: Likewise. * include/private/gc_pmark.h: Likewise. * include/private/gc_priv.h: Likewise. * include/private/gcconfig.h: Likewise. * include/private/solaris_threads.h: Likewise. * include/private/specific.h: Likewise. * tests/test.c: Likewise. * tests/test_cpp.cc: Likewise. * configure: Rebuild. * Makefile.in: Rebuild. * mips_sgi_mach_dep.s: Add. * alpha_mach_dep.s: Remove. * irix_threads.c: Remove. * linux_threads.c: Remove. * mips_sgi_mach_dep.S: Remove. * missing: Remove. * powerpc_macosx_mach_dep.s: Remove. * doc/Makefile.am: Remove. * doc/Makefile.in: Remove. From-SVN: r69880
89 lines
2.4 KiB
Plaintext
89 lines
2.4 KiB
Plaintext
# Makefile for Borland C++ 5.5 on NT
|
|
# If you have the Borland assembler, remove "-DUSE_GENERIC"
|
|
#
|
|
bc= c:\Borland\BCC55
|
|
bcbin= $(bc)\bin
|
|
bclib= $(bc)\lib
|
|
bcinclude= $(bc)\include
|
|
|
|
gcinclude1 = $(bc)\gc6.2\include
|
|
gcinclude2 = $(bc)\gc6.2\cord
|
|
|
|
cc= $(bcbin)\bcc32
|
|
rc= $(bcbin)\brc32
|
|
lib= $(bcbin)\tlib
|
|
link= $(bcbin)\ilink32
|
|
cflags= -O2 -R -v- -vi -H -H=gc.csm -I$(bcinclude);$(gcinclude1);$(gcinclude2) -L$(bclib) \
|
|
-w-pro -w-aus -w-par -w-ccc -w-rch -a4 -D__STDC__=0
|
|
#defines= -DSILENT
|
|
defines= -DSMALL_CONFIG -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC -DNO_GETENV -DJAVA_FINALIZATION -DGC_OPERATOR_NEW_ARRAY
|
|
|
|
.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 XXXstubborn.obj XXXdyn_load.obj \
|
|
XXXtypd_mlc.obj XXXptr_chck.obj XXXgc_cpp.obj XXXmallocx.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\de.obj cord\de_win.obj: include\cord.h include\private\cord_pos.h cord\de_win.h \
|
|
cord\de_cmds.h
|
|
|
|
cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj \
|
|
cord\de_win.res gc.lib
|
|
$(cc) @&&|
|
|
$(cflags) -W -e$* cord\cordbscs.obj cord\cordxtra.obj \
|
|
cord\de.obj cord\de_win.obj gc.lib
|
|
|
|
|
$(rc) cord\de_win.res cord\de.exe
|
|
|
|
gc_cpp.obj: include\gc_cpp.h include\gc.h
|
|
|
|
gc_cpp.cpp: gc_cpp.cc
|
|
copy gc_cpp.cc gc_cpp.cpp
|
|
|
|
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
|
|
|
|
|
|
|
scratch:
|
|
-del *.obj *.res *.exe *.csm cord\*.obj cord\*.res cord\*.exe cord\*.csm
|
|
|
|
clean:
|
|
del gc.lib
|
|
del *.obj
|
|
del tests\test.obj
|
|
|