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.

73 lines
2.0 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIUNICODE=1
  9. !include ..\..\..\common\makefile.cmn
  10. SOURCES_USED=..\..\..\common\makefile.cmn
  11. TARGETNAME=bvtapilib
  12. TARGETPATH=obj
  13. TARGETTYPE=LIBRARY
  14. # The TARGETLIBS macro specifies additional libraries to link against your target
  15. # image. Each library path specification should contain an asterisk (*)
  16. # where the machine-specific subdirectory name should go.
  17. LINKLIBS= \
  18. $(CORELIB_LIB)
  19. TARGETLIBS= \
  20. $(STDLIBRARY_LIB) \
  21. $(WMIIDL_LIB) \
  22. $(WBEMINT_LIB) \
  23. $(UTILLIB_LIB) \
  24. $(SDK_LIB_PATH)\wmip.lib \
  25. $(SDK_LIB_PATH)\ole32.lib \
  26. $(SDK_LIB_PATH)\oleaut32.lib \
  27. $(SDK_LIB_PATH)\uuid.lib \
  28. $(SDK_LIB_PATH)\kernel32.lib \
  29. $(SDK_LIB_PATH)\advapi32.lib \
  30. $(SDK_LIB_PATH)\advapip.lib \
  31. $(SDK_LIB_PATH)\vccomsup.lib \
  32. $(SDK_LIB_PATH)\rpcrt4.lib \
  33. $(SDK_LIB_PATH)\user32.lib\
  34. # The INCLUDES variable specifies any include paths that are specific to
  35. # this source directory. Separate multiple paths with single
  36. # semicolons. Relative path specifications are okay.
  37. INCLUDES=$(INCLUDES); \
  38. $(WBEMCOMN_INC); \
  39. $(WMIIDL_INC); \
  40. $(MINIMFC_INC); \
  41. $(STDLIBRARY_INC); \
  42. $(MOFCOMP_DLL_INC); \
  43. $(BVTLIB_INC); \
  44. $(UTILLIB_INC); \
  45. $(WBEMINT_INC); \
  46. $(CORELIB_INC)
  47. # The developer defines the SOURCES macro. It contains a list of all the
  48. # source files for this component. Specify each source file on a separate
  49. # line using the line-continuation character. This minimizes merge
  50. # conflicts if two developers are adding source files to the same component.
  51. SOURCES= \
  52. ..\bvtutil.cpp \
  53. ..\bvtapi.cpp \
  54. ..\bvtcom.cpp\
  55. ..\bvtini.cpp\
  56. ..\bvt.cpp \
  57. ..\bvtsink.cpp
  58. # Next, specify options for the compiler using C_DEFINES.
  59. C_DEFINES=$(C_DEFINES) $(C_DEFINES) /DBUILDING_MOFD
  60. USER_C_FLAGS=/EHa
  61. DLLENTRY=_DllMainCRTStartup
  62. DLLDEF=$(O)\wmiprov.def
  63. USE_MSVCRT=1
  64. USE_NATIVE_EH=1