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.

69 lines
1.6 KiB

  1. # ############################################################
  2. # sources
  3. # Author: Murali R. Krishnan ( MuraliK)
  4. # Date: 08-Apr-1996
  5. #
  6. # Describes the macros used for building using NT 'build' command
  7. #
  8. # This directory builds
  9. # Internet Services - Asynchronous Thread Queue library
  10. #
  11. # ############################################################
  12. !include ..\..\..\place.inc
  13. MAJORCOMP=infocomm
  14. MINORCOMP=isatq
  15. TARGETNAME=isatq
  16. TARGETPATH=obj
  17. TARGETTYPE=DYNLINK
  18. MSC_WARNING_LEVEL=/W3 /WX
  19. BUFFER_OVERFLOW_CHECKS=1
  20. TARGETLIBS= \
  21. $(SDK_LIB_PATH)\advapi32.lib \
  22. $(SDK_LIB_PATH)\kernel32.lib \
  23. $(SDK_LIB_PATH)\user32.lib \
  24. $(SDK_LIB_PATH)\ws2_32.lib \
  25. $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib
  26. # iisrtl.lib may be missing for non IIS build of this source code.
  27. # They can pull code from ..\..\iisrtl in IIS K2 tree
  28. USE_MSVCRT=1
  29. USE_STL=1
  30. DLLENTRY=_DllMainCRTStartup
  31. # C_DEFINES=-DWINSOCK11=1
  32. !IFDEF CAP_PROFILE
  33. TARGETLIBS= $(TARGETLIBS) $(SDK_LIB_PATH)\cap.lib
  34. !ENDIF
  35. !IFDEF ICAP_PROFILE
  36. TARGETLIBS= $(TARGETLIBS) $(ICAP_LIBS)
  37. !ENDIF
  38. INCLUDES=.;..\..\..\inc; \
  39. $(NET_INC_PATH)
  40. SOURCES= isatq.rc \
  41. atqbmon.cxx \
  42. atqmain.cxx \
  43. atqsupp.cxx \
  44. atqendp.cxx \
  45. dirmon.cpp \
  46. dllmain.cxx \
  47. timeout.cxx \
  48. abw.cxx \
  49. captrc.cpp
  50. PRECOMPILED_CXX=1
  51. PRECOMPILED_INCLUDE=isatq.hxx
  52. PRECOMPILED_PCH=isatq.pch
  53. PRECOMPILED_OBJ=isatq.obj