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.

57 lines
992 B

  1. !IF 0
  2. Copyright (c) 2001 Microsoft Corporation
  3. !ENDIF
  4. #
  5. # if TARGETPATH is not defined (in the paths that build libraries) then this
  6. # is the default target path
  7. #
  8. !IFNDEF TARGETPATH
  9. TARGETPATH=obj
  10. TARGETTYPE=UMAPPL_NOLIB
  11. !ENDIF
  12. #
  13. # define some macros that subprojects can use
  14. #
  15. ROOT=$(SDXROOT)\inetcore\winhttp\tools\stress
  16. STRESSINC=$(ROOT)\stressapps\core
  17. WINHTTPLIB=$(SDXROOT)\inetcore\winhttp\v5\dll\obj\i386
  18. WINHTTPINC=$(SDXROOT)\inetcore\winhttp\v5\inc
  19. #
  20. # what it is that we're building
  21. #
  22. MAJORCOMP=stressapps
  23. USE_NOLIBS=1
  24. NO_NTDLL=1
  25. #
  26. # Linker flags
  27. #
  28. WIN32_WINNT_VERSION=0x0500
  29. #WIN32_WIN95_VERSION=0x0400
  30. #
  31. # compiler warning flags
  32. #
  33. MSC_WARNING_LEVEL=/W3 /WX
  34. #
  35. # enable exception handling
  36. #
  37. USE_NATIVE_EH=1
  38. #
  39. # compiler definitions
  40. #
  41. C_DEFINES=$(C_DEFINES) -DWIN32
  42. #
  43. # Set debugging level
  44. #
  45. !IF "$(NTDEBUG)" != "" && "$(NTDEBUG)" != "retail" && "$(NTDEBUG)" != "ntsdnodbg"
  46. C_DEFINES=$(C_DEFINES) -D_DEBUG
  47. !ENDIF