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.

78 lines
2.2 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=wbemtest
  12. TARGETPATH=obj
  13. TARGETTYPE=PROGRAM
  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. $(WMIIDL_LIB) \
  19. $(STDLIBRARY_LIB) \
  20. $(WBEMCOMN_DLL_LIB) \
  21. $(WBEMINT_LIB) \
  22. $(SDK_LIB_PATH)\oleaut32.lib \
  23. $(SDK_LIB_PATH)\kernel32.lib \
  24. $(SDK_LIB_PATH)\advapi32.lib \
  25. $(SDK_LIB_PATH)\user32.lib \
  26. $(SDK_LIB_PATH)\gdi32.lib \
  27. $(SDK_LIB_PATH)\ole32.lib \
  28. $(SDK_LIB_PATH)\uuid.lib \
  29. $(SDK_LIB_PATH)\resutils.lib \
  30. $(SDK_LIB_PATH)\version.lib \
  31. $(SDK_LIB_PATH)\Htmlhelp.lib
  32. # The INCLUDES variable specifies any include paths that are specific to
  33. # this source directory. Separate multiple paths with single
  34. # semicolons. Relative path specifications are okay.
  35. INCLUDES=$(INCLUDES); \
  36. $(WBEMINT_INC); \
  37. $(WMIIDL_INC); \
  38. $(MC_INC); \
  39. $(WBEMCORE_INC); \
  40. $(WBEMCOMN_INC); \
  41. $(WBEMMCP_INC); \
  42. $(MOFCOMP_DLL_INC); \
  43. $(TRANLIB_INC); \
  44. $(WBEMMSP_INC); \
  45. $(STDLIBRARY_INC)
  46. # The developer defines the SOURCES macro. It contains a list of all the
  47. # source files for this component. Specify each source file on a separate
  48. # line using the line-continuation character. This minimizes merge
  49. # conflicts if two developers are adding source files to the same component.
  50. SOURCES= \
  51. wbemtest.rc \
  52. localloc.cpp \
  53. method.cpp \
  54. notsink.cpp \
  55. wbemtest.cpp \
  56. objedit.cpp \
  57. wbemqual.cpp \
  58. wbemntfy.cpp \
  59. bstring.cpp \
  60. wbemdlg.cpp \
  61. textconv.cpp \
  62. wt_converter.cpp \
  63. wbemtest.cpp
  64. # Next, specify options for the compiler using C_DEFINES.
  65. C_DEFINES=$(C_DEFINES) /DOPTIMIZE
  66. USE_NATIVE_EH=ASYNC
  67. LINKER_STACKSIZE=/STACK:1048576,8192
  68. USE_MSVCRT=1
  69. USE_STL=1
  70. UMTYPE=windows
  71. UMENTRY=winmain