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.

85 lines
2.1 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIPRECOMP=1
  9. WMIMFC=1
  10. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  11. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  12. TARGETNAME=wbemdr32
  13. TARGETPATH=obj
  14. TARGETTYPE=DYNLINK
  15. # The TARGETLIBS macro specifies additional libraries to link against your target
  16. # image. Each library path specification should contain an asterisk (*)
  17. # where the machine-specific subdirectory name should go.
  18. TARGETLIBS= \
  19. $(WMIIDL_LIB) \
  20. $(WBEMINT_LIB) \
  21. $(STDLIBRARY_LIB) \
  22. $(SDK_LIB_PATH)\kernel32.lib \
  23. $(SDK_LIB_PATH)\advapi32.lib \
  24. $(SDK_LIB_PATH)\user32.lib \
  25. $(SDK_LIB_PATH)\version.lib \
  26. $(SDK_LIB_PATH)\oleaut32.lib \
  27. $(SDK_LIB_PATH)\ole32.lib \
  28. $(SDK_LIB_PATH)\uuid.lib \
  29. $(SDK_LIB_PATH)\mpr.lib\
  30. $(SDK_LIB_PATH)\odbccp32.lib\
  31. $(SDK_LIB_PATH)\comctl32.lib\
  32. $(SDK_LIB_PATH)\htmlhelp.lib
  33. # The INCLUDES variable specifies any include paths that are specific to
  34. # this source directory. Separate multiple paths with single
  35. # semicolons. Relative path specifications are okay.
  36. INCLUDES=$(INCLUDES); \
  37. $(STDLIBRARY_INC); \
  38. $(WMIIDL_INC)
  39. # The developer defines the SOURCES macro. It contains a list of all the
  40. # source files for this component. Specify each source file on a separate
  41. # line using the line-continuation character. This minimizes merge
  42. # conflicts if two developers are adding source files to the same component.
  43. SOURCES= \
  44. wbemdr32.rc \
  45. browse.cpp \
  46. bcd.cpp \
  47. catalog.cpp \
  48. coldefs.cpp \
  49. conndlg.cpp \
  50. connect.cpp \
  51. dbase.cpp \
  52. dll.cpp \
  53. drdbdr.cpp \
  54. evaluate.cpp \
  55. execute.cpp \
  56. info.cpp \
  57. isam.cpp \
  58. optimize.cpp \
  59. options.cpp \
  60. parse.cpp \
  61. prepare.cpp \
  62. results.cpp \
  63. semantic.cpp \
  64. setup.cpp \
  65. scalar.cpp \
  66. sqltype.cpp \
  67. sort.cpp \
  68. transact.cpp \
  69. util.cpp
  70. C_DEFINES=$(C_DEFINES) /DBUILD_CORE
  71. WIN32_WINNT_VERSION=0x0400
  72. USER_C_FLAGS=/EHa
  73. DLLENTRY=_DllMainCRTStartup
  74. DLLDEF=$(O)\x86.def
  75. USE_MSVCRT=1
  76. USE_VCCOM=1