implemented Setup.hs to build boehm cpp libs and install them;
[hs-boehmgc.git] / gc-7.2 / NT_X64_THREADS_MAKEFILE
1 # Makefile for Windows NT.  Assumes Microsoft compiler.
2 # modified 2007 August by Friedrich Dominicus:
3 #                       - copied from NT_X64_STATIC_THREADS_MAKEFILES
4 #                       - checked agaist gc.mak (NT_THREADS_MAKEFILE)
5 #                       - added changes to integrate the tools
6 #                       - currently just with debug information
7 # problems can be sent to
8 #                     frido at q-software-solutions.de
9 #
10 # or the mailing list
11
12
13 MY_CPU=AMD64
14 CPU=$(MY_CPU)
15 !include <ntwin32.mak>
16
17 # Make sure that .cc is not viewed as a suffix.  It is for VC++2005, but # not earlier versions.  We can deal with either, but not inconsistency.
18 .SUFFIXES:
19 .SUFFIXES: .obj .cpp .c
20
21 # Atomic_ops installation directory.  For win32, the source directory
22 # should do, since we only need the headers.
23 # We assume this was manually unpacked, since I'm not sure there is
24 # a Windows standard command line tool to do this.
25 AO_SRC_DIR=libatomic_ops/src
26 AO_INCLUDE_DIR=$(AO_SRC_DIR)
27
28 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
29
30 all: gc64.dll gctest.exe cord\de.exe test_cpp.exe
31
32 .c.obj:
33         $(cc) $(cdebug) $(cflags) $(cvarsmt) -Iinclude -I$(AO_INCLUDE_DIR) -DALL_INTERIOR_POINTERS -DGC_DLL -DGC_THREADS -D_CRT_SECURE_NO_DEPRECATE $*.c /Fo$*.obj /wd4701
34 # Disable "may not be initialized" warnings.  They're too approximate.
35 # Disable crt security warnings, since unfortunately they warn about all sorts # of safe uses of strncpy.  It would be nice to leave the rest enabled.
36
37 .cpp.obj:
38         $(cc) $(cdebug) $(cflags) $(cvarsmt) -Iinclude -I$(AO_INCLUDE_DIR) -DALL_INTERIOR_POINTERS -DALL_INTERIOR_POINTERS -DGC_DLL -DGC_THREADS -D_CRT_SECURE_NO_DEPRECATE $*.cpp /Fo$*.obj
39
40 $(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
41
42
43 LINK64=link.exe
44 LINK64_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib \
45 shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo \
46 /subsystem:windows /dll /incremental:no /pdb:"gc.pdb" /machine:X64 /out:"gc64.dll" \
47 /implib:"gc64_dll.lib"
48
49 gc64.dll : $(OBJS)
50         $(LINK64)  $(ldebug) $(LINK64_FLAGS) $(OBJS)
51
52
53 gctest.exe: tests\test.obj gc64_dll.lib
54 #  This produces a "GUI" applications that opens no windows and writes to
55 # the log file "gctest.gc.log".
56         $(link) $(ldebug) $(guiflags) -out:$*.exe tests\test.obj $(guilibs) gc64_dll.lib
57
58 cord\de_win.rbj: cord\de_win.res
59         cvtres /MACHINE:$(MY_CPU) /OUT:cord\de_win.rbj cord\de_win.res
60
61 cord\de.obj cord\de_win.obj: include\cord.h include\private\cord_pos.h cord\de_win.h cord\de_cmds.h
62
63 cord\de_win.res: cord\de_win.rc cord\de_win.h cord\de_cmds.h
64         $(rc) $(rcvars) -r -fo cord\de_win.res cord\de_win.rc
65
66 # Cord/de is a real win32 gui application.
67 cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj cord\de_win.rbj gc64_dll.lib
68         $(link) $(ldebug) $(guiflags) -stack:16384 -out:cord\de.exe cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj cord\de_win.rbj gc64_dll.lib $(guilibs)
69
70 gc_cpp.obj: include\gc_cpp.h include\gc.h
71
72 gc_cpp.cpp: gc_cpp.cc
73 #       copy gc_cpp.cc gc_cpp.cpp
74
75 test_cpp.cpp: tests\test_cpp.cc
76         copy tests\test_cpp.cc test_cpp.cpp
77
78 # This generates the C++ test executable.  The executable expects # a single numeric argument, which is the number of iterations.
79 # The output appears in the file "test_cpp.gc.log".
80 test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc64_dll.lib
81         $(link) $(ldebug) $(guiflags) -stack:16384 -out:test_cpp.exe test_cpp.obj gc64_dll.lib $(guilibs)
82
83 AO_SCR_DIR:
84         tar xvfz $(AO_SRC_DIR).tar.gz;
85
86 clean:
87         del *.obj gc64_dll.lib gc64.dll