implemented Setup.hs to build boehm cpp libs and install them;
[hs-boehmgc.git] / gc-7.2 / NT_STATIC_THREADS_MAKEFILE
1 # Makefile for Windows NT.  Assumes Microsoft compiler.
2 # Use "nmake nodebug=1 all" for optimized versions of library, gctest and editor.
3
4 MY_CPU=X86
5 CPU=$(MY_CPU)
6 !include <ntwin32.mak>
7
8 # Make sure that .cc is not viewed as a suffix.  It is for VC++2005, but
9 # not earlier versions.  We can deal with either, but not inconsistency.
10 .SUFFIXES:
11 .SUFFIXES: .obj .cpp .c
12
13 # Atomic_ops installation directory.  For win32, the source directory
14 # should do, since we only need the headers.
15 # We assume this was manually unpacked, since I'm not sure there is
16 # a Windows standard command line tool to do this.
17 AO_SRC_DIR=libatomic_ops/src
18 AO_INCLUDE_DIR=$(AO_SRC_DIR)
19
20 OBJS= alloc.obj reclaim.obj allchblk.obj misc.obj mach_dep.obj os_dep.obj mark_rts.obj headers.obj mark.obj obj_map.obj blacklst.obj finalize.obj new_hblk.obj dbg_mlc.obj malloc.obj stubborn.obj dyn_load.obj typd_mlc.obj ptr_chck.obj gc_cpp.obj mallocx.obj win32_threads.obj extra\msvc_dbg.obj thread_local_alloc.obj
21
22 all: gctest.exe cord\de.exe test_cpp.exe
23
24 .c.obj:
25         $(cc) $(cdebug) $(cflags) $(cvarsmt) -Iinclude -I$(AO_INCLUDE_DIR) -DALL_INTERIOR_POINTERS -DGC_NOT_DLL -DGC_THREADS -DTHREAD_LOCAL_ALLOC -DPARALLEL_MARK -D_CRT_SECURE_NO_DEPRECATE $*.c /Fo$*.obj
26
27 .cpp.obj:
28         $(cc) $(cdebug) $(cflags) $(cvarsmt) -Iinclude -I$(AO_INCLUDE_DIR) -DALL_INTERIOR_POINTERS -DGC_NOT_DLL -DGC_THREADS -DTHREAD_LOCAL_ALLOC -D_CRT_SECURE_NO_DEPRECATE $*.cpp /Fo$*.obj
29
30 $(OBJS) tests\test.obj: include\private\gc_priv.h include\private\gc_hdrs.h include\gc.h include\private\gcconfig.h include\private\gc_locks.h include\private\gc_pmark.h include\gc_mark.h include\private\msvc_dbg.h
31
32 gc.lib: $(OBJS)
33         lib /MACHINE:i386 /out:gc.lib $(OBJS)
34 # The original NT SDK used lib32 instead of lib
35
36 gctest.exe: tests\test.obj gc.lib
37 #       The following works for win32 debugging.  For win32s debugging use debugtype:coff
38 #       and add mapsympe line.
39 #  This produces a "GUI" applications that opens no windows and writes to the log file
40 #  "gctest.gc.log".  This is done to make the result runnable under win32s.
41         $(link) -debug -debugtype:cv $(guiflags) -stack:262144 -out:$*.exe tests\test.obj $(guilibs) gc.lib
42 #       mapsympe -n -o gctest.sym gctest.exe
43
44 cord\de_win.rbj: cord\de_win.res
45         cvtres /MACHINE:$(MY_CPU) /OUT:cord\de_win.rbj cord\de_win.res
46
47 cord\de.obj cord\de_win.obj: include\cord.h include\private\cord_pos.h cord\de_win.h cord\de_cmds.h
48
49 cord\de_win.res: cord\de_win.rc cord\de_win.h cord\de_cmds.h
50         $(rc) $(rcvars) -r -fo cord\de_win.res cord\de_win.rc
51
52 # Cord/de is a real win32 gui application.
53 cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj cord\de_win.rbj gc.lib
54         $(link) -debug -debugtype:cv $(guiflags) -stack:16384 -out:cord\de.exe  cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj cord\de_win.rbj gc.lib $(guilibs)
55
56 gc_cpp.obj: include\gc_cpp.h include\gc.h
57
58 gc_cpp.cpp: gc_cpp.cc
59 #       copy gc_cpp.cc gc_cpp.cpp
60
61 test_cpp.cpp: tests\test_cpp.cc
62         copy tests\test_cpp.cc test_cpp.cpp
63
64 # This generates the C++ test executable.  The executable expects
65 # a single numeric argument, which is the number of iterations.
66 # The output appears in the file "test_cpp.gc.log".
67 test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc.lib
68         $(link) -debug -debugtype:cv $(guiflags) -stack:16384 -out:test_cpp.exe test_cpp.obj gc.lib $(guilibs)
69
70 AO_SCR_DIR:
71                 tar xvfz $(AO_SRC_DIR).tar.gz;