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.

44 lines
885 B

  1. #
  2. # Builds hashtest.lib using the NT Build Environment
  3. #
  4. # George V. Reilly, georgere, 10/23/2000
  5. #
  6. TARGETNAME=kHashTest
  7. TARGETPATH=..\..\..\$(_OBJ_DIR)
  8. #TARGETTYPE=DRIVER_LIBRARY
  9. TARGETTYPE=DRIVER
  10. LKRPATH=$(TARGETPATH)
  11. TARGETLIBS=\
  12. $(LKRPATH)\*\LKRhash.lib \
  13. #
  14. # Dont use C++ exception handling (/GX-)
  15. #
  16. !undef USE_NATIVE_EH
  17. C_DEFINES=$(C_DEFINES) -DNT -D_NTDRIVER_
  18. INCLUDES=$(INCLUDES); \
  19. ..; \
  20. ..\..\..\inc; \
  21. $(BASE_INC_PATH); \
  22. !if "$(TARGETTYPE)" == "DRIVER"
  23. MAIN = kmain.cpp
  24. !endif
  25. SOURCES= \
  26. $(MAIN) \
  27. ..\hashtest.cpp \
  28. ..\IniFile.cpp \
  29. !IF "$(NTNOPCH)" == ""
  30. PRECOMPILED_INCLUDE=precomp.hxx
  31. PRECOMPILED_OBJ=precomp.obj
  32. PRECOMPILED_PCH=precomp.pch
  33. PRECOMPILED_CXX=1
  34. !ENDIF