Source code of Windows XP (NT5)
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.

62 lines
1.3 KiB

  1. # sources
  2. # Author: Lei Jin(leijin)
  3. # Date: 07/03/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. MAJORCOMP=wamreg
  11. MINORCOMP=wamreg
  12. TARGETPATH=obj
  13. TARGETTYPE=DYNLINK
  14. MSC_WARNING_LEVEL=/W3 /WX
  15. DLLDEF=..\wamreg.def
  16. C_DEFINES=
  17. DLLENTRY=_DllMainCRTStartup
  18. USE_MSVCRT=1
  19. RAW_TARGETLIBS=\
  20. $(SDK_LIB_PATH)\user32.lib \
  21. $(SDK_LIB_PATH)\advapi32.lib \
  22. $(SDK_LIB_PATH)\ole32.lib \
  23. $(SDK_LIB_PATH)\oleaut32.lib \
  24. $(SDK_LIB_PATH)\uuid.lib \
  25. $(SDK_LIB_PATH)\kernel32.lib \
  26. TARGETLIBS=$(RAW_TARGETLIBS)
  27. INCLUDES=..\.\;$(IISBASEDIR)\inc;$(IISBASEDIR)\inc\$(O);
  28. SOURCES= ..\wmrgsv.idl \
  29. ..\wamreg.cpp \
  30. ..\wamadm.cpp \
  31. ..\comobj.cpp \
  32. ..\auxfunc.cpp \
  33. ..\export.cpp \
  34. ..\mdconfig.cpp \
  35. ..\mtsconfig.cpp \
  36. ..\wamreg.rc \
  37. !IFDEF CAP_PROFILE
  38. TARGETLIBS= $(TARGETLIBS) $(CAP_LIBS)
  39. !ENDIF
  40. #
  41. # ICAPHOOK.OBJ (ICECAP v3.6) allows user to set specific functions to profile
  42. # without recompile the binary.
  43. # NOTE: icaphook.obj is not available for ALPHA platform.
  44. #
  45. !IFDEF ICAP_PROFILE
  46. TARGETLIBS= ..\..\..\..\libsupp\*\icaphook.obj $(TARGETLIBS) $(ICAP_LIBS)
  47. !ENDIF
  48. INCLUDES=.\;$(INCLUDES)