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.

66 lines
1.9 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=a51conv
  11. TARGETPATH=obj
  12. TARGETTYPE=LIBRARY
  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. LINKLIBS=\
  17. $(COMEXESV_LIB)
  18. TARGETLIBS= \
  19. $(WMIIDL_LIB) \
  20. $(WBEMINT_LIB) \
  21. $(STDLIBRARY_LIB) \
  22. $(WBEMCOMN_DLL_LIB) \
  23. $(ESSCLI_DLL_LIB) \
  24. $(SDK_LIB_PATH)\oleaut32.lib \
  25. $(SDK_LIB_PATH)\kernel32.lib \
  26. $(SDK_LIB_PATH)\advapi32.lib \
  27. $(SDK_LIB_PATH)\user32.lib \
  28. $(SDK_LIB_PATH)\gdi32.lib \
  29. $(SDK_LIB_PATH)\ole32.lib \
  30. $(SDK_LIB_PATH)\uuid.lib \
  31. $(SDK_LIB_PATH)\resutils.lib \
  32. $(SDK_LIB_PATH)\version.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. $(WMIIDL_INC); \
  39. $(MC_INC); \
  40. $(WBEMCORE_INC); \
  41. $(WBEMCOMN_INC); \
  42. $(STDLIBRARY_INC); \
  43. $(ESSCLI_INC); \
  44. $(COMLIB_INC)
  45. # The developer defines the SOURCES macro. It contains a list of all the
  46. # source files for this component. Specify each source file on a separate
  47. # line using the line-continuation character. This minimizes merge
  48. # conflicts if two developers are adding source files to the same component.
  49. SOURCES= \
  50. main.cpp \
  51. stage.cpp \
  52. filecach.cpp \
  53. # Next, specify options for the compiler using C_DEFINES.
  54. C_DEFINES=$(C_DEFINES) /DOPTIMIZE /DUNICODE /D_UNICODE
  55. USER_C_FLAGS=/EHa
  56. LINKER_STACKSIZE=/STACK:1048576,8192
  57. USE_MSVCRT=1
  58. UMTYPE=console
  59. UMENTRY=main