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.

75 lines
3.0 KiB

  1. BINPLACE_PLACEFILE=$(BINPLACE_PLACEFILE_DIR)\placefil.txt
  2. !INCLUDE ..\..\..\..\PLACE.INC
  3. !INCLUDE $(IISBASEDIR)\iisrearc\ICEPICK.INC
  4. TARGETNAME=strmfilt
  5. TARGETPATH=$(IISBASEDIR)\lib\$(_OBJ_DIR)
  6. TARGETTYPE=DYNLINK
  7. MSC_WARNING_LEVEL=/W4 /WX
  8. USE_MSVCRT=1
  9. USE_STL=1
  10. BUFFER_OVERFLOW_CHECKS=1
  11. DLLENTRY=_DllMainCRTStartup
  12. INCLUDES=.\;..\;$(INCLUDES); \
  13. $(IISBASEDIR)\iisrearc\core\inc; \
  14. ..\..\inc; \
  15. $(IISBASEDIR)\iisrearc\inc; \
  16. $(IISBASEDIR)\inc; \
  17. $(IISBASEDIR)\inc\$(O); \
  18. $(NET_INC_PATH);
  19. !IF 0
  20. Issue jaroslad 10/31/2001
  21. -DIRTL_DLLEXP= assures that there are no conflicts in using static version of iisutil
  22. there are __declspec(dllimport), __declspec(dllexport) storage class attributes
  23. used throughout the iisutil header files.
  24. Those attributes don't work well with with static library version of iisutil
  25. ( at least when templates are used )
  26. !ENDIF
  27. C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE -DIRTL_DLLEXP=
  28. SOURCES= streamfilt.rc \
  29. strmfilt.mof \
  30. streamfilter.cxx \
  31. isapicontext.cxx \
  32. ulcontext.cxx \
  33. sslcontext.cxx \
  34. streamcontext.cxx \
  35. servercert.cxx \
  36. iisctl.cxx \
  37. certstore.cxx \
  38. siteconfig.cxx \
  39. sitecred.cxx \
  40. uccontext.cxx \
  41. ucsslcontext.cxx \
  42. TARGETLIBS = \
  43. $(SDK_LIB_PATH)\ntdll.lib \
  44. $(SDK_LIB_PATH)\kernel32.lib \
  45. $(SDK_LIB_PATH)\advapi32.lib \
  46. $(SDK_LIB_PATH)\user32.lib \
  47. $(SDK_LIB_PATH)\ws2_32.lib \
  48. $(SDK_LIB_PATH)\mswsock.lib \
  49. $(SDK_LIB_PATH)\secur32.lib \
  50. $(SDK_LIB_PATH)\crypt32.lib \
  51. $(SDK_LIB_PATH)\httpapi.lib \
  52. $(IISBASEDIR)\lib\$(O)\iis_dbgutil.lib \
  53. $(IISBASEDIR)\lib\$(O)\iis_string.lib \
  54. $(IISBASEDIR)\lib\$(O)\iis_acache.lib \
  55. $(IISBASEDIR)\lib\$(O)\iis_lkrhash.lib \
  56. $(IISBASEDIR)\lib\$(O)\iis_locks.lib \
  57. $(IISBASEDIR)\lib\$(O)\iis_reftrace.lib \
  58. $(IISBASEDIR)\lib\$(O)\iis_etwtrace.lib \
  59. $(IISBASEDIR)\lib\$(O)\mbid.lib \
  60. $(IISBASEDIR)\lib\$(O)\w3tp_static.lib \
  61. !IF "$(NTNOPCH)" == ""
  62. PRECOMPILED_INCLUDE=precomp.hxx
  63. PRECOMPILED_PCH=precomp.pch
  64. PRECOMPILED_OBJ=precomp.obj
  65. !ENDIF