forked from ivmai/bdwgc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
digimars.mak
60 lines (45 loc) · 1.69 KB
/
digimars.mak
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
# Makefile to build Hans Boehm garbage collector using the Digital Mars
# compiler from www.digitalmars.com
# Written by Walter Bright
CFLAGS_EXTRA=
DEFINES=-D_WINDOWS -DGC_DLL -DGC_THREADS -DGC_DISCOVER_TASK_THREADS \
-DALL_INTERIOR_POINTERS -DENABLE_DISCLAIM -DGC_ATOMIC_UNCOLLECTABLE \
-DGC_GCJ_SUPPORT -DJAVA_FINALIZATION -DNO_EXECUTE_PERMISSION \
-DGC_REQUIRE_WCSDUP -DUSE_MUNMAP
CFLAGS=-Iinclude -Ilibatomic_ops\src $(DEFINES) -g $(CFLAGS_EXTRA)
LFLAGS=/ma/implib/co
CC=sc
# Must precede other goals.
all: gc.dll gc.lib
gc.obj: extra\gc.c
$(CC) -c $(CFLAGS) extra\gc.c -ogc.obj
.cpp.obj:
$(CC) -c $(CFLAGS) -Aa $*
OBJS= gc.obj gc_badalc.obj gc_cpp.obj
check: gctest.exe cpptest.exe
gctest.exe
cpptest.exe
gc.lib: gc.dll
gc.dll: $(OBJS) gc.def digimars.mak
$(CC) -ogc.dll $(OBJS) -L$(LFLAGS) gc.def kernel32.lib user32.lib
gc.def: digimars.mak
echo LIBRARY GC >gc.def
echo DESCRIPTION "Boehm-Demers-Weiser Garbage Collector" >>gc.def
echo EXETYPE NT >>gc.def
echo EXPORTS >>gc.def
echo GC_is_visible_print_proc >>gc.def
echo GC_is_valid_displacement_print_proc >>gc.def
clean:
del *.log gc.def gc.dll gc.lib gc.map gctest.map cpptest.map
del tests\gctest.obj gctest.exe tests\cpptest.obj cpptest.exe
del $(OBJS)
gctest.exe: gc.lib tests\gctest.obj
$(CC) -ogctest.exe tests\gctest.obj gc.lib
tests\gctest.obj: tests\gctest.c
$(CC) -c $(CFLAGS) tests\gctest.c -otests\gctest.obj
cpptest.exe: gc.lib tests\cpptest.obj
$(CC) -ocpptest.exe tests\cpptest.obj gc.lib
tests\cpptest.obj: tests\cpp.cc
$(CC) -c $(CFLAGS) -cpp tests\cpp.cc -otests\cpptest.obj
gc_badalc.obj: gc_badalc.cc gc_badalc.cpp
gc_cpp.obj: gc_cpp.cc gc_cpp.cpp