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.

104 lines
2.0 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIPRECOMP=1
  9. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  10. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  11. TARGETNAME=wmimsg
  12. TARGETPATH=obj
  13. TARGETTYPE=DYNLINK
  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. $(WMIMSG_INC); \
  19. $(WBEMINT_INC); \
  20. $(WBEMCOMN_INC); \
  21. $(COMLIB_INC)
  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. localloc.cpp \
  28. msgsvc.cpp \
  29. multsend.cpp \
  30. msgmain.cpp \
  31. smrtmrsh.cpp \
  32. objacces.cpp \
  33. rpchdr.cpp \
  34. rpcctx.cpp \
  35. rpcsend.cpp \
  36. rpcrecv.cpp \
  37. rpcmsg.idl \
  38. $(O)\rpcmsg_c.c \
  39. $(O)\rpcmsg_s.c \
  40. wmimsg.rc
  41. LINKLIBS= \
  42. $(COMDLLSV_LIB)
  43. TARGETLIBS= \
  44. $(WMIMSG_LIB) \
  45. $(WBEMINT_LIB) \
  46. $(WMIIDL_LIB) \
  47. $(WBEMCOMN_STATIC_LIB) \
  48. $(SDK_LIB_PATH)\kernel32.lib \
  49. $(SDK_LIB_PATH)\advapip.lib \
  50. $(SDK_LIB_PATH)\ole32.lib \
  51. $(SDK_LIB_PATH)\oleaut32.lib \
  52. $(SDK_LIB_PATH)\rpcrt4.lib \
  53. $(SDK_LIB_PATH)\uuid.lib \
  54. $(SDK_LIB_PATH)\user32.lib \
  55. $(SDK_LIB_PATH)\secur32.lib
  56. # Next, specify options for the compiler using C_DEFINES.
  57. C_DEFINES=$(C_DEFINES) /D__WINNT_BUILD__ /DUNICODE /D_UNICODE /DSECURITY_WIN32
  58. WIN32_WINNT_VERSION=0x0500
  59. IDL_TYPE=rpc
  60. MIDL_FLAGS=/prefix server Rcvr /acf rpcmsg.acf
  61. USE_NATIVE_EH=1
  62. USE_MSVCRT=1
  63. DLLENTRY=_DllMainCRTStartup
  64. DLLDEF=$(O)\wmimsg.def