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.

52 lines
1.7 KiB

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