Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
811 B

  1. #
  2. # Builds LKRdbg.dll using the NT Build Environment
  3. #
  4. # George V. Reilly, georgere, 2000/03/24
  5. #
  6. TARGETNAME=LKRdbg
  7. TARGETPATH=..\$(_OBJ_DIR)
  8. TARGETTYPE=DYNLINK
  9. TARGETLIBS=\
  10. $(SDK_LIB_PATH)\kernel32.lib \
  11. C_DEFINES=-DUSE_DEBUG_CRTS
  12. USE_MSVCRT=1
  13. USE_STL=1
  14. # WIN32_WINNT_VERSION=0x0403
  15. INCLUDES=.;..\inc;..\src;
  16. DLLENTRY=_DllMainCRTStartup
  17. MSC_WARNING_LEVEL=/W3 /WX
  18. LKR_CUST_EXTN= \
  19. lkrcust.cpp \
  20. wordhash.cpp \
  21. minfan.cpp \
  22. numset.cpp \
  23. str-num.cpp \
  24. SOURCES= \
  25. main.cxx \
  26. help.cxx \
  27. lkrdbg.rc \
  28. dbglkrh.cxx \
  29. dbglocks.cxx \
  30. $(LKR_CUST_EXTN)
  31. !IF "$(NTNOPCH)" == ""
  32. PRECOMPILED_CXX=1
  33. PRECOMPILED_INCLUDE=precomp.hxx
  34. PRECOMPILED_OBJ=precomp.obj
  35. PRECOMPILED_PCH=precomp.pch
  36. !ENDIF