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.

71 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. TARGETLIBS= \
  20. $(SDK_LIB_PATH)\advapi32.lib \
  21. $(SDK_LIB_PATH)\kernel32.lib \
  22. $(SDK_LIB_PATH)\user32.lib \
  23. $(SDK_LIB_PATH)\ws2_32.lib \
  24. $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib \
  25. ..\spud\$(O)\uspud.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. DLLENTRY=_DllMainCRTStartup
  30. # C_DEFINES=-DWINSOCK11=1
  31. !IFDEF CAP_PROFILE
  32. TARGETLIBS= $(TARGETLIBS) $(SDK_LIB_PATH)\cap.lib
  33. !ENDIF
  34. !IFDEF ICAP_PROFILE
  35. TARGETLIBS= $(TARGETLIBS) $(ICAP_LIBS)
  36. !ENDIF
  37. INCLUDES=.;..\..\..\inc; \
  38. $(NET_INC_PATH)
  39. SOURCES= isatq.rc \
  40. atqcport.cxx \
  41. atqbmon.cxx \
  42. atqmain.cxx \
  43. atqsupp.cxx \
  44. atqxmit.cxx \
  45. atqendp.cxx \
  46. dirmon.cpp \
  47. dllmain.cxx \
  48. timeout.cxx \
  49. spud.cxx \
  50. abw.cxx \
  51. captrc.cpp
  52. PRECOMPILED_CXX=1
  53. PRECOMPILED_INCLUDE=isatq.hxx
  54. PRECOMPILED_PCH=isatq.pch
  55. PRECOMPILED_OBJ=isatq.obj