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.

108 lines
2.6 KiB

  1. ############################################################################
  2. #
  3. # Copyright (c) 2000-2002 Microsoft Corporation, All Rights Reserved
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIPRECOMPSHARED=1
  9. !include ..\..\..\..\common\makefile.cmn
  10. SOURCES_USED=..\..\..\..\common\makefile.cmn
  11. TARGETNAME=Cimwin32Library
  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. $(UTILLIB_INC); \
  19. $(STDLIBRARY_INC); \
  20. $(CIMWIN32_LIB_INC); \
  21. $(FRAMEDYN_PRIVATE); \
  22. $(WMIIDL_INC); \
  23. $(CRT_INC_PATH); \
  24. $(NET_INC_PATH); \
  25. $(BASE_INC_PATH)
  26. # The developer defines the SOURCES macro. It contains a list of all the
  27. # source files for this component. Specify each source file on a separate
  28. # line using the line-continuation character. This minimizes merge
  29. # conflicts if two developers are adding source files to the same component.
  30. MISCSOURCES= \
  31. ..\confgmgr.cpp
  32. PRESOURCES= \
  33. ..\assoc.cpp \
  34. ..\binding.cpp \
  35. ..\AdvApi32Api.cpp \
  36. ..\cfgmgrdevice.cpp \
  37. ..\chwres.cpp \
  38. ..\configmgrapi.cpp \
  39. ..\CAutoLock.cpp \
  40. ..\CCriticalSec.cpp \
  41. ..\CGlobal.cpp \
  42. ..\CKernel.cpp \
  43. ..\CMutex.cpp \
  44. ..\devdesc.cpp \
  45. ..\dllcommon.cpp \
  46. ..\dllutils.cpp \
  47. ..\dllunreg.cpp \
  48. ..\DllWrapperbase.cpp \
  49. ..\DMADesc.cpp \
  50. ..\EventProvider.cpp \
  51. ..\FactoryRouter.cpp \
  52. ..\iodesc.cpp \
  53. ..\irqdesc.cpp \
  54. ..\implogonuser.cpp \
  55. ..\Kernel32Api.cpp \
  56. ..\RefPtrLite.cpp \
  57. ..\ResourceDesc.cpp \
  58. ..\ResourceManager.cpp \
  59. ..\secureshare.cpp \
  60. ..\securityApi.cpp \
  61. ..\strings.cpp \
  62. ..\Sid.cpp \
  63. ..\SvrApiApi.cpp \
  64. ..\TimerQueue.cpp \
  65. ..\TimedDllResource.cpp \
  66. ..\TimeOutRule.cpp \
  67. ..\NetApi32Api.cpp \
  68. ..\Nt4SvcToResMap.cpp \
  69. ..\NtDevToSvcSearch.cpp \
  70. ..\perfdata.cpp \
  71. ..\UserEnvApi.cpp \
  72. ..\userhive.cpp \
  73. ..\WbemPsApi.cpp \
  74. ..\WmiApi.cpp \
  75. ..\Ws2_32Api.cpp \
  76. ..\Wsock32Api.cpp \
  77. ..\wbemnetapi32.cpp \
  78. ..\cluidhelper.cpp
  79. NTSOURCES=$(NTSOURCES) \
  80. ..\WMI_FilePrivateProfile.cpp \
  81. ..\profilestring.cpp \
  82. ..\session.cpp \
  83. ..\MprApi.cpp \
  84. ..\MsAcm32Api.cpp \
  85. ..\NtDllApi.cpp \
  86. ..\WinmmApi.cpp \
  87. # ..\WinSpoolApi.cpp \
  88. ..\computerAPI.cpp
  89. # Next, specify options for the compiler using C_DEFINES.
  90. C_DEFINES=$(C_DEFINES) /D__WINNT_BUILD__
  91. WIN32_WINNT_VERSION=0x0500
  92. USE_NATIVE_EH=ASYNC
  93. USE_MSVCRT=1
  94. USE_VCCOM=1
  95. USE_IOSTREAM=1
  96. USE_STL=1
  97. !ifdef USE_FRAMEDYD
  98. DEBUG_CRTS=1
  99. !endif