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.

105 lines
2.4 KiB

  1. !IF 0
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Revision History:
  11. !ENDIF
  12. !include ..\sources.inc
  13. TARGETNAME=qmgr
  14. TARGETTYPE=DYNLINK
  15. DLLENTRY=_DllMainCRTStartup
  16. INCLUDES=$(INCLUDES);..\inc;$(O);..\idl\$(O)
  17. C_DEFINES=$(C_DEFINES) /DUNICODE
  18. #
  19. # Use the multithreaded C runtime DLL.
  20. #
  21. USE_MSVCRT=1
  22. #
  23. # Use ATL 3.0 headers.
  24. #
  25. USE_ATL=1
  26. ATL_VER=30
  27. #
  28. # This component uses C++ exception handling.
  29. #
  30. USE_NATIVE_EH=1
  31. DELAYLOAD=\
  32. TARGETPATH=..\bins\$(_OBJ_DIR)
  33. TARGETLIBS=$(TARGETLIBS) \
  34. ..\newjob\$(O)\qmgr.lib \
  35. ..\utils\$(O)\qmgrutils.lib \
  36. ..\lib\$(O)\bits.lib \
  37. $(SDK_LIB_PATH)\advapi32.lib \
  38. $(SDK_LIB_PATH)\kernel32.lib \
  39. $(SDK_LIB_PATH)\ntdll.lib \
  40. $(SDK_LIB_PATH)\userenv.lib \
  41. $(SDK_LIB_PATH)\uuid.lib \
  42. $(SDK_LIB_PATH)\advpack.lib \
  43. $(SDK_LIB_PATH)\ole32.lib \
  44. $(SDK_LIB_PATH)\oleaut32.lib \
  45. $(SDK_LIB_PATH)\wtsapi32.lib \
  46. $(SDK_LIB_PATH)\rpcrt4.lib \
  47. $(SDK_LIB_PATH)\user32.lib \
  48. $(SDK_LIB_PATH)\comctl32.lib \
  49. $(SDK_LIB_PATH)\comdlg32.lib \
  50. $(SDK_LIB_PATH)\shlwapi.lib \
  51. $(SDK_LIB_PATH)\version.lib \
  52. $(SDK_LIB_PATH)\setupapi.lib \
  53. $(SDK_LIB_PATH)\fdi.lib \
  54. $(SDK_LIB_PATH)\crypt32.lib \
  55. $(SDK_LIB_PATH)\ShFolder.Lib \
  56. $(SDK_LIB_PATH)\urlmon.lib \
  57. $(SDK_LIB_PATH)\iphlpapi.lib \
  58. $(SDK_LIB_PATH)\ws2_32.lib \
  59. $(SDK_LIB_PATH)\irnotif.lib \
  60. $(SDK_LIB_PATH)\advapip.lib \
  61. !if defined(USE_WININET)
  62. $(SDK_LIB_PATH)\wininet.lib \
  63. !else
  64. $(SDK_LIB_PATH)\winhttp.lib \
  65. !endif
  66. SOURCES= \
  67. service.cxx \
  68. drizzle.rc \
  69. memory.cxx \
  70. MISCFILES=qmgr.inf \
  71. BITS_{0B59F77F-257C-472C-A965-AEA45B5F2B4F}.sld \
  72. UMTEST=client
  73. UMENTRY=wmain
  74. UMTYPE=console
  75. UMLIBS=\
  76. $(SDK_LIB_PATH)\uuid.lib \
  77. $(SDK_LIB_PATH)\ole32.lib \
  78. $(PROJECT_LIB_PATH)\qmgrlib.lib \
  79. BINPLACE_PLACEFILE=..\placefil.txt
  80. !if !defined( BITS_V12_ON_NT4 )
  81. RUN_WPP=$(SOURCES) -dll -gen:{um-w2k.tpl}*.tmh
  82. !endif