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.

77 lines
2.2 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIPRECOMP=0
  9. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  10. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  11. TARGETNAME=wmiparse
  12. TARGETPATH=obj
  13. TARGETTYPE=DYNLINK
  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. TARGETLIBS= \
  18. $(SDK_LIB_PATH)\kernel32.lib \
  19. $(SDK_LIB_PATH)\advapi32.lib \
  20. $(SDK_LIB_PATH)\user32.lib \
  21. $(SDK_LIB_PATH)\version.lib \
  22. $(SDK_LIB_PATH)\oleaut32.lib \
  23. $(SDK_LIB_PATH)\ole32.lib \
  24. $(SDK_LIB_PATH)\rpcrt4.lib \
  25. $(SDK_LIB_PATH)\uuid.lib \
  26. $(SDK_LIB_PATH)\mfc42.lib \
  27. $(SDK_LIB_PATH)\msvcprt.lib \
  28. $(SDK_LIB_PATH)\vccomsup.lib \
  29. $(SDK_LIB_PATH)\winmm.lib \
  30. $(SDK_LIB_PATH)\psapi.lib \
  31. lib\retail\locutil.lib \
  32. lib\retail\mitutil.lib \
  33. lib\retail\parseman.lib \
  34. lib\retail\parsutil.lib \
  35. lib\retail\pbase.lib \
  36. lib\retail\win32rt.lib \
  37. lib\retail\esputil.lib \
  38. # The INCLUDES variable specifies any include paths that are specific to
  39. # this source directory. Separate multiple paths with single
  40. # semicolons. Relative path specifications are okay.
  41. INCLUDES=$(INCLUDES); \
  42. .\inc; \
  43. $(SDK_INC_PATH)\mfc42; \
  44. # The developer defines the SOURCES macro. It contains a list of all the
  45. # source files for this component. Specify each source file on a separate
  46. # line using the line-continuation character. This minimizes merge
  47. # conflicts if two developers are adding source files to the same component.
  48. SOURCES= \
  49. wmiclass.cpp \
  50. wmilfile.cpp \
  51. wmilprs.cpp \
  52. wmiparse.cpp \
  53. wmiparse.rc \
  54. stdafx.cpp \
  55. # Next, specify options for the compiler using C_DEFINES.
  56. C_DEFINES=$(C_DEFINES) /DBUILDING_PROX
  57. USER_C_FLAGS=/EHa
  58. USER_L_FLAGS=/nologo
  59. USE_NATIVE_EH=1
  60. USE_MSVCRT=1
  61. USE_MFC=1
  62. DLLENTRY=_DllMainCRTStartup
  63. DLLDEF=wmiparse.def