Annotation of win32/gc/NT_MAKEFILE, revision 1.1
1.1 ! moko 1: # Makefile for Windows NT. Assumes Microsoft compiler.
! 2: # Should be invoked as "nmake -f NT_MAKEFILE [<args>]"; the optional arguments
! 3: # are: "cpu=AMD64" - to target x64, "cpu=i386" - to target x86,
! 4: # "make_as_lib=1" - to build it as a static library, "nodebug=1" - to produce
! 5: # the release variant of the library, "nothreads=1" - to build the library and
! 6: # the tests without threads support.
! 7:
! 8: cc = cl
! 9: link = link
! 10: rc = rc
! 11:
! 12: !IF !DEFINED(CPU) || "$(CPU)" == ""
! 13: CPU = $(PROCESSOR_ARCHITECTURE)
! 14: !ENDIF
! 15: !IF "$(CPU)" == "I386" || "$(CPU)" == "X86" || "$(CPU)" == "x86"
! 16: CPU = i386
! 17: !ELSEIF "$(CPU)" == "X64" || "$(CPU)" == "x64" || "$(CPU)" == "amd64"
! 18: CPU = AMD64
! 19: !ENDIF
! 20:
! 21: !IF !DEFINED(NMAKE_WINVER)
! 22: NMAKE_WINVER = 0x0600
! 23: !ENDIF
! 24:
! 25: cflags = $(cflags) -c -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -GS -D_WINNT -W4
! 26: !IF "$(CPU)" == "i386"
! 27: cflags = $(cflags) -D_X86_=1 -DWIN32 -D_WIN32
! 28: !ELSEIF "$(CPU)" == "AMD64"
! 29: cflags = $(cflags) -D_AMD64_=1 -DWIN64 -D_WIN64 -DWIN32 -D_WIN32
! 30: !ENDIF
! 31: cflags = $(cflags) -D_WIN32_WINNT=$(NMAKE_WINVER) -DWINVER=$(NMAKE_WINVER)
! 32:
! 33: !IFDEF NODEBUG
! 34: cvarsmt = -D_MD -MD
! 35: cdebug = -Ox -DNDEBUG
! 36: rcvars = -DWIN32 -D_WIN32 -DWINVER=$(NMAKE_WINVER)
! 37: ldebug = /RELEASE
! 38: !ELSE
! 39: cvarsmt = -D_MD -MDd
! 40: cdebug = -Zi -Od -DDEBUG
! 41: rcvars = -DWIN32 -D_WIN32 -DWINVER=$(NMAKE_WINVER) -DDEBUG -D_DEBUG
! 42: ldebug = /DEBUG /DEBUGTYPE:cv
! 43: !ENDIF
! 44:
! 45: !IF "$(CPU)" == "i386"
! 46: CVTRES_CPU=X86
! 47: !ELSEIF "$(CPU)" == "AMD64"
! 48: CVTRES_CPU=X64
! 49: !ENDIF
! 50:
! 51: !IFNDEF NODEBUG
! 52: CFLAGS_DEBUG=-DGC_ASSERTIONS
! 53: !ENDIF
! 54:
! 55: !IFNDEF NOTHREADS
! 56: CFLAGS_MT=$(cvarsmt) -DGC_THREADS -DTHREAD_LOCAL_ALLOC -DPARALLEL_MARK
! 57: !ENDIF
! 58:
! 59: !IFDEF MAKE_AS_LIB
! 60: CFLAGS_GCDLL=-DGC_NOT_DLL
! 61: GC_LIB=gc.lib
! 62: LINK_GC=lib /out:$(GC_LIB)
! 63: !ELSE
! 64: CFLAGS_GCDLL=-DGC_DLL
! 65: !IF "$(CPU)" == "AMD64"
! 66: GC_DLL=gc64.dll
! 67: GC_LIB=gc64_dll.lib
! 68: !ELSE
! 69: GC_DLL=gc.dll
! 70: GC_LIB=gc_dll.lib
! 71: !ENDIF
! 72: LINK_DLL_FLAGS=kernel32.lib user32.lib /subsystem:windows /dll \
! 73: /INCREMENTAL:NO /pdb:"gc.pdb" /out:$(GC_DLL) /implib:$(GC_LIB)
! 74: LINK_GC=$(link) $(ldebug) $(LINK_DLL_FLAGS)
! 75: !ENDIF
! 76:
! 77: CFLAGS_SPECIFIC=$(CFLAGS_DEBUG) $(CFLAGS_GCDLL) $(CFLAGS_MT) -DLARGE_CONFIG -DDONT_ADD_BYTE_AT_END
! 78:
! 79: CFLAGS_DEFAULT=-DALL_INTERIOR_POINTERS -DENABLE_DISCLAIM -DGC_ATOMIC_UNCOLLECTABLE -DGC_GCJ_SUPPORT -DJAVA_FINALIZATION -DNO_EXECUTE_PERMISSION -DUSE_MUNMAP
! 80:
! 81: # Make sure that .cc is not viewed as a suffix. It is for VC++2005, but
! 82: # not earlier versions. We can deal with either, but not inconsistency.
! 83: .SUFFIXES:
! 84: .SUFFIXES: .obj .cpp .c
! 85:
! 86: # Atomic_ops installation directory. For win32, the source directory
! 87: # should do, since we only need the headers.
! 88: # We assume this was manually unpacked.
! 89: AO_SRC_DIR=libatomic_ops/src
! 90: AO_INCLUDE_DIR=$(AO_SRC_DIR)
! 91:
! 92: OBJS= misc.obj win32_threads.obj alloc.obj reclaim.obj allchblk.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 fnlz_mlc.obj malloc.obj dyn_load.obj typd_mlc.obj ptr_chck.obj gc_cpp.obj gcj_mlc.obj mallocx.obj extra\msvc_dbg.obj thread_local_alloc.obj
! 93:
! 94: all: gctest.exe cord\de.exe test_cpp.exe
! 95:
! 96: .c.obj:
! 97: $(cc) $(cdebug) $(cflags) $(CFLAGS_SPECIFIC) -Iinclude -I$(AO_INCLUDE_DIR) $(CFLAGS_DEFAULT) -DCORD_NOT_DLL -D_CRT_SECURE_NO_DEPRECATE $*.c /Fo$*.obj /wd4100 /wd4127 /wd4701
! 98: # Disable crt security warnings, since unfortunately they warn about all sorts
! 99: # of safe uses of strncpy. It would be nice to leave the rest enabled.
! 100:
! 101: .cpp.obj:
! 102: $(cc) $(cdebug) $(cflags) $(CFLAGS_SPECIFIC) -Iinclude $(CFLAGS_DEFAULT) -D_CRT_SECURE_NO_DEPRECATE $*.cpp /Fo$*.obj
! 103:
! 104: $(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\gc_disclaim.h include\private\msvc_dbg.h
! 105:
! 106: $(GC_LIB): $(OBJS)
! 107: $(LINK_GC) /MACHINE:$(CPU) $(OBJS)
! 108:
! 109: gctest.exe: $(GC_LIB) tests\test.obj
! 110: $(link) /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) user32.lib -out:$*.exe tests\test.obj $(GC_LIB)
! 111: # mapsympe -n -o gctest.sym gctest.exe
! 112: # This produces a GUI app that opens no window and writes to gctest.gc.log.
! 113:
! 114: cord\tests\de_win.rbj: cord\tests\de_win.res
! 115: cvtres /MACHINE:$(CVTRES_CPU) /OUT:cord\tests\de_win.rbj cord\tests\de_win.res
! 116:
! 117: 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
! 118:
! 119: cord\tests\de_win.res: cord\tests\de_win.rc cord\tests\de_win.h cord\tests\de_cmds.h
! 120: $(rc) $(rcvars) -r -fo cord\tests\de_win.res cord\tests\de_win.rc
! 121:
! 122: # Cord/de is a real win32 GUI app.
! 123: cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\tests\de.obj cord\tests\de_win.obj cord\tests\de_win.rbj $(GC_LIB)
! 124: $(link) /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) -out:cord\de.exe cord\cordbscs.obj cord\cordxtra.obj cord\tests\de.obj cord\tests\de_win.obj cord\tests\de_win.rbj $(GC_LIB) gdi32.lib user32.lib
! 125:
! 126: gc_cpp.obj: gc_cpp.cc include\gc_cpp.h include\gc.h
! 127:
! 128: test_cpp.cpp: tests\test_cpp.cc
! 129: copy tests\test_cpp.cc test_cpp.cpp
! 130:
! 131: # This generates the C++ test executable. The executable expects
! 132: # a single numeric argument, which is the number of iterations.
! 133: # The output appears in test_cpp.gc.log file.
! 134: test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h $(GC_LIB)
! 135: $(link) /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) user32.lib -out:test_cpp.exe test_cpp.obj $(GC_LIB)
! 136:
! 137: $(AO_SRC_DIR):
! 138: tar xvfz $(AO_SRC_DIR).tar.gz
! 139:
! 140: clean:
! 141: del *.exe *.log *.obj *.pdb cord\*.exe cord\*.exp cord\*.lib cord\*.obj cord\*.pdb cord\tests\*.rbj cord\tests\*.res cord\tests\*.obj extra\*.obj gc*.lib gc*.dll gc*.exp test_cpp.cpp tests\*.obj 2> nul
E-mail: