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.

63 lines
1.8 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIUNICODE=1
  9. WMIPRECOMP=1
  10. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  11. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  12. TARGETNAME=secobj
  13. TARGETPATH=obj
  14. TARGETTYPE=LIBRARY
  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. $(WBEMINT_LIB) \
  20. $(WMIIDL_LIB) \
  21. $(WBEMCOMN_DLL_LIB) \
  22. $(STDLIBRARY_LIB) \
  23. $(SDK_LIB_PATH)\oleaut32.lib \
  24. $(SDK_LIB_PATH)\kernel32.lib \
  25. $(SDK_LIB_PATH)\advapi32.lib \
  26. $(SDK_LIB_PATH)\user32.lib \
  27. $(SDK_LIB_PATH)\gdi32.lib \
  28. $(SDK_LIB_PATH)\ole32.lib \
  29. $(SDK_LIB_PATH)\uuid.lib \
  30. $(SDK_LIB_PATH)\resutils.lib \
  31. $(SDK_LIB_PATH)\version.lib \
  32. $(SDK_LIB_PATH)\vccomsup.lib \
  33. LINKLIBS= \
  34. $(WBEMPRV_COMN_LIB)\
  35. # The INCLUDES variable specifies any include paths that are specific to
  36. # this source directory. Separate multiple paths with single
  37. # semicolons. Relative path specifications are okay.
  38. INCLUDES=$(INCLUDES); \
  39. $(WBEMINT_INC); \
  40. $(WMIIDL_INC); \
  41. $(MC_INC); \
  42. $(STDLIBRARY_INC); \
  43. $(WBEMCOMN_INC)
  44. # The developer defines the SOURCES macro. It contains a list of all the
  45. # source files for this component. Specify each source file on a separate
  46. # line using the line-continuation character. This minimizes merge
  47. # conflicts if two developers are adding source files to the same component.
  48. SOURCES= \
  49. secobj.cpp
  50. C_DEFINES=$(C_DEFINES) /DBUILD_CORE
  51. WIN32_WINNT_VERSION=0x0400
  52. USER_C_FLAGS=/EHa
  53. LINKER_STACKSIZE=/STACK:2097152,8192
  54. USE_NATIVE_EH=1
  55. USE_MSVCRT=1