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.

58 lines
1.8 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  9. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  10. TARGETNAME=DumpTool
  11. TARGETPATH=obj
  12. TARGETTYPE=PROGRAM
  13. # The TARGETLIBS macro specifies additional libraries to link against your target
  14. # image. Each library path specification should contain an asterisk (*)
  15. # where the machine-specific subdirectory name should go.
  16. TARGETLIBS= \
  17. $(SDK_LIB_PATH)\oleaut32.lib \
  18. $(SDK_LIB_PATH)\kernel32.lib \
  19. $(SDK_LIB_PATH)\advapi32.lib \
  20. $(SDK_LIB_PATH)\user32.lib \
  21. $(SDK_LIB_PATH)\gdi32.lib \
  22. $(SDK_LIB_PATH)\ole32.lib \
  23. $(SDK_LIB_PATH)\uuid.lib \
  24. $(SDK_LIB_PATH)\resutils.lib \
  25. $(SDK_LIB_PATH)\version.lib
  26. # The INCLUDES variable specifies any include paths that are specific to
  27. # this source directory. Separate multiple paths with single
  28. # semicolons. Relative path specifications are okay.
  29. INCLUDES=$(INCLUDES); \
  30. ..\.; \
  31. $(WBEMINT_INC); \
  32. $(WMIIDL_INC); \
  33. $(MC_INC); \
  34. $(WBEMCORE_INC); \
  35. $(WBEMCOMN_INC); \
  36. $(MOFCOMP_DLL_INC); \
  37. $(STDLIBRARY_INC)
  38. # The developer defines the SOURCES macro. It contains a list of all the
  39. # source files for this component. Specify each source file on a separate
  40. # line using the line-continuation character. This minimizes merge
  41. # conflicts if two developers are adding source files to the same component.
  42. SOURCES= \
  43. main.cpp
  44. # Next, specify options for the compiler using C_DEFINES.
  45. C_DEFINES=$(C_DEFINES) /DOPTIMIZE /DUNICODE /D_UNICODE
  46. USER_C_FLAGS=/EHa
  47. LINKER_STACKSIZE=/STACK:1048576,8192
  48. USE_MSVCRT=1
  49. UMTYPE=console
  50. UMENTRY=main