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
1.1 KiB

  1. # sources
  2. # Author: Charles E. Grant (cgrant)
  3. # Date: 19-February-1997
  4. #
  5. # This file is used for compiling Proxy web server from code
  6. # for generic web server
  7. #
  8. # Describes the macros used for building using NT 'build' command
  9. #
  10. TARGETPATH=obj
  11. TARGETTYPE=DYNLINK
  12. BUFFER_OVERFLOW_CHECKS=1
  13. MSC_WARNING_LEVEL= /W4 /WX
  14. INCLUDES=$(IISBASEDIR)\inc;
  15. #
  16. # these are the files that are common between IIS 5.1 & IIS 6.0
  17. #
  18. SOURCES=\
  19. ..\cbin.cxx \
  20. ..\gbuf.cxx \
  21. ..\handle.cxx \
  22. ..\ptrmap.cxx \
  23. ..\security.cxx \
  24. ..\metabase.rc
  25. TARGETLIBS=\
  26. $(SDK_LIB_PATH)\user32.lib \
  27. $(SDK_LIB_PATH)\advapi32.lib \
  28. $(SDK_LIB_PATH)\ole32.lib \
  29. $(SDK_LIB_PATH)\uuid.lib \
  30. $(SDK_LIB_PATH)\kernel32.lib \
  31. $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib \
  32. $(IISBASEDIR)\svcs\lib\$(O)\iiscrypt.lib \
  33. $(IISBASEDIR)\svcs\lib\$(O)\icrypt.lib
  34. !IF "$(NTNOPCH)" == ""
  35. PRECOMPILED_INCLUDE=precomp.hxx
  36. PRECOMPILED_PCH=precomp.pch
  37. PRECOMPILED_OBJ=precomp.obj
  38. !ENDIF