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.

42 lines
803 B

  1. #
  2. # Builds hashtest.exe using the NT Build Environment
  3. #
  4. # George V. Reilly, georgere, 11/17/1999
  5. #
  6. TARGETNAME=HashTest
  7. TARGETPATH=..\..\..\$(_OBJ_DIR)
  8. TARGETTYPE=PROGRAM
  9. LKRPATH=$(TARGETPATH)
  10. C_DEFINES=-DUSE_DEBUG_CRTS
  11. NO_BINPLACE=1
  12. UMENTRY=main
  13. UMTYPE=console
  14. TARGETLIBS=\
  15. $(SDK_LIB_PATH)\kernel32.lib \
  16. $(SDK_LIB_PATH)\winmm.lib \
  17. $(LKRPATH)\*\LKRhash.lib \
  18. MSC_WARNING_LEVEL=/W3 /WX
  19. USE_MSVCRT=1
  20. USE_STL=1
  21. INCLUDES=\
  22. ..; \
  23. ..\..\..\inc; \
  24. SOURCES= \
  25. ..\hashtest.cpp \
  26. ..\IniFile.cpp \
  27. ..\main.cpp \
  28. !IF "$(NTNOPCH)" == ""
  29. PRECOMPILED_INCLUDE=precomp.hxx
  30. PRECOMPILED_OBJ=precomp.obj
  31. PRECOMPILED_PCH=precomp.pch
  32. PRECOMPILED_CXX=1
  33. !ENDIF