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.

74 lines
2.1 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=TEST1
  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)\vccomsup.lib \
  18. $(WINMGMT)\Framework\$(O)\culib.lib \
  19. $(WINMGMT)\TextUI\$(O)\TextRun.lib \
  20. $(STDLIBRARY_LIB) \
  21. $(NCOBJAPI_LIB) \
  22. $(SDK_LIB_PATH)\ntdll.lib \
  23. $(SDK_LIB_PATH)\kernel32.lib \
  24. $(SDK_LIB_PATH)\advapi32.lib \
  25. $(SDK_LIB_PATH)\user32.lib \
  26. $(SDK_LIB_PATH)\oleaut32.lib \
  27. $(SDK_LIB_PATH)\ole32.lib \
  28. $(SDK_LIB_PATH)\uuid.lib \
  29. $(SDK_LIB_PATH)\msvcirt.lib \
  30. $(SDK_LIB_PATH)\msvcrt.lib \
  31. $(SDK_LIB_PATH)\vccomsup.lib \
  32. $(SDK_LIB_PATH)\msvcprt.lib \
  33. # The INCLUDES variable specifies any include paths that are specific to
  34. # this source directory. Separate multiple paths with single
  35. # semicolons. Relative path specifications are okay.
  36. INCLUDES=$(INCLUDES); \
  37. $(WBEMINT_INC); \
  38. $(ESSCLI_INC); \
  39. $(WBEMCORE_INC); \
  40. $(WMIREPOSITIDL_INC); \
  41. $(WBEMCOMN_INC); \
  42. $(MC_INC); \
  43. $(STDLIBRARY_INC); \
  44. $(WMIIDL_INC); \
  45. $(COREPROX_INC); \
  46. $(WBEMESS_INC); \
  47. $(COMMON)\wmiutils; \
  48. $(WMIROOT)\Framework; \
  49. $(WMIROOT)\Framework\extensions; \
  50. $(WMIROOT)\TextUI; \
  51. $(WMIROOT)\;
  52. # The developer defines the SOURCES macro. It contains a list of all the
  53. # source files for this component. Specify each source file on a separate
  54. # line using the line-continuation character. This minimizes merge
  55. # conflicts if two developers are adding source files to the same component.
  56. SOURCES= \
  57. TestRunner.cpp \
  58. ExampleTestCase.cpp \
  59. C_DEFINES=$(C_DEFINES) /DUNICODE /D_UNICODE
  60. USER_C_FLAGS=/EHa
  61. MSC_OPTIMIZATION=/Ob2
  62. USE_NATIVE_EH=1
  63. USE_MSVCRT=1
  64. USE_RTTI=1
  65. UMTYPE=console
  66. UMENTRY=main