NT_MAKEFILE 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Makefile for Windows NT. Assumes Microsoft compiler, and a single thread.
  2. # DLLs are included in the root set under NT, but not under win32S.
  3. # Use "nmake nodebug=1 all" for optimized versions of library, gctest and editor.
  4. MY_CPU=X86
  5. CPU=$(MY_CPU)
  6. !include <ntwin32.mak>
  7. 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
  8. all: gctest.exe cord\de.exe test_cpp.exe
  9. .c.obj:
  10. $(cc) $(cdebug) $(cflags) $(cvars) -Iinclude -DSILENT -DALL_INTERIOR_POINTERS -D__STDC__ -DGC_NOT_DLL -DGC_BUILD $*.c /Fo$*.obj
  11. .cpp.obj:
  12. $(cc) $(cdebug) $(cflags) $(cvars) -Iinclude -DSILENT -DALL_INTERIOR_POINTERS -DGC_NOT_DLL -DGC_BUILD $*.CPP /Fo$*.obj
  13. $(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
  14. gc.lib: $(OBJS)
  15. lib /MACHINE:i386 /out:gc.lib $(OBJS)
  16. # The original NT SDK used lib32 instead of lib
  17. gctest.exe: tests\test.obj gc.lib
  18. # The following works for win32 debugging. For win32s debugging use debugtype:coff
  19. # and add mapsympe line.
  20. # This produces a "GUI" applications that opens no windows and writes to the log file
  21. # "gc.log". This is done to make the result runnable under win32s.
  22. $(link) -debug:full -debugtype:cv $(guiflags) -stack:131072 -out:$*.exe tests\test.obj $(guilibs) gc.lib
  23. # mapsympe -n -o gctest.sym gctest.exe
  24. cord\de_win.rbj: cord\de_win.res
  25. cvtres /MACHINE:$(MY_CPU) /OUT:cord\de_win.rbj cord\de_win.res
  26. cord\de.obj cord\de_win.obj: include\cord.h include\private\cord_pos.h cord\de_win.h cord\de_cmds.h
  27. cord\de_win.res: cord\de_win.rc cord\de_win.h cord\de_cmds.h
  28. $(rc) $(rcvars) -r -fo cord\de_win.res $(cvars) cord\de_win.rc
  29. # Cord/de is a real win32 gui application.
  30. cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj cord\de_win.rbj gc.lib
  31. $(link) -debug:full -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)
  32. gc_cpp.obj: include\gc_cpp.h include\gc.h
  33. gc_cpp.cpp: gc_cpp.cc
  34. copy gc_cpp.cc gc_cpp.cpp
  35. test_cpp.cpp: tests\test_cpp.cc
  36. copy tests\test_cpp.cc test_cpp.cpp
  37. # This generates the C++ test executable. The executable expects
  38. # a single numeric argument, which is the number of iterations.
  39. # The output appears in the file "gc.log".
  40. test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc.lib
  41. $(link) -debug:full -debugtype:cv $(guiflags) -stack:16384 -out:test_cpp.exe test_cpp.obj gc.lib $(guilibs)