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.

95 lines
2.5 KiB

  1. ###########################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIPRECOMPSHARED=1
  9. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  10. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  11. TARGETNAME=wbemcomn
  12. TARGETPATH=obj
  13. TARGETTYPE=LIBRARY
  14. # The INCLUDES variable specifies any include paths that are specific to
  15. # this source directory. Separate multiple paths with single
  16. # semicolons. Relative path specifications are okay.
  17. INCLUDES=$(INCLUDES); \
  18. $(STDLIBRARY_INC); \
  19. $(WMIREPOSITIDL_INC); \
  20. $(COMMON)\wmiutils; \
  21. $(DS_INC_PATH)\crypto;
  22. # The developer defines the SOURCES macro. It contains a list of all the
  23. # source files for this component. Specify each source file on a separate
  24. # line using the line-continuation character. This minimizes merge
  25. # conflicts if two developers are adding source files to the same component.
  26. SOURCES= \
  27. ..\arena.cpp \
  28. ..\buffer.cpp \
  29. ..\callsec.cpp \
  30. ..\cimval.cpp \
  31. ..\CWbemTime.cpp \
  32. ..\DateTimeParser.cpp \
  33. ..\evtlog.cpp \
  34. ..\execq.cpp \
  35. ..\flexarry.cpp \
  36. ..\flexq.cpp \
  37. ..\genutils.cpp \
  38. ..\md5wbem.cpp \
  39. ..\stllock.cpp \
  40. ..\mkdir.cpp \
  41. ..\mrciclass.cpp \
  42. ..\mrcicode.cpp \
  43. ..\OleWrap.cpp \
  44. ..\pathutl.cpp \
  45. ..\ql.cpp \
  46. ..\qllex.cpp \
  47. ..\reg.cpp \
  48. ..\safearry.cpp \
  49. ..\smallarr.cpp \
  50. ..\sync.cpp \
  51. ..\tss.cpp \
  52. ..\txttempl.cpp \
  53. ..\unk.cpp \
  54. ..\var.cpp \
  55. ..\wbemutil.cpp \
  56. ..\winntsec.cpp \
  57. ..\wstring.cpp \
  58. ..\persistcfg.cpp \
  59. ..\like.cpp \
  60. ..\datepart.cpp \
  61. ..\throttle.cpp \
  62. ..\dothrow.cpp \
  63. ..\wqllex.cpp \
  64. ..\wqlscan.cpp \
  65. ..\locks.cpp \
  66. ..\statsync.cpp \
  67. ..\unload.cpp \
  68. ..\sleeper.cpp
  69. # Next, specify options for the compiler using C_DEFINES.
  70. C_DEFINES=$(C_DEFINES) /D__WINNT_BUILD__ /D_UNICODE /DUNICODE
  71. USE_NATIVE_EH=ASYNC
  72. USE_MSVCRT=1
  73. USE_STL=1
  74. # Put test executables in UMTEST macro.
  75. UMTEST=tmpltest
  76. UMTYPE=console
  77. UMENTRY=wmain
  78. UMLIBS= \
  79. $(WMIIDL_LIB) \
  80. $(STDLIBRARY_LIB) \
  81. $(O)\wbemcomn.lib \
  82. $(SDK_LIB_PATH)\msvcrt.lib \
  83. $(SDK_LIB_PATH)\kernel32.lib \
  84. $(SDK_LIB_PATH)\oleaut32.lib \
  85. $(SDK_LIB_PATH)\ole32.lib \
  86. $(SDK_LIB_PATH)\advapi32.lib \
  87. $(SDK_LIB_PATH)\uuid.lib \
  88. $(SDK_LIB_PATH)\user32.lib \
  89. $(SDK_LIB_PATH)\ntdll.lib \
  90. $(SDK_LIB_PATH)\vccomsup.lib