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.

73 lines
2.2 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=userid
  11. TARGETPATH=obj
  12. TARGETTYPE=DYNLINK
  13. MIDL_TLBDIR=$(O)
  14. PASS0_CLIENTDIR=$(O)
  15. PASS0_SERVERDIR=$(O)
  16. PASS0_SOURCEDIR=$(O)
  17. PASS0_HEADERDIR=$(O)
  18. # Tone down the warning level to avoid errors from
  19. # symbols names being too long (because of STL)
  20. MSC_WARNING_LEVEL= /W3
  21. # The TARGETLIBS macro specifies additional libraries to link against your target
  22. # image. Each library path specification should contain an asterisk (*)
  23. # where the machine-specific subdirectory name should go.
  24. TARGETLIBS= \
  25. $(WMIIDL_LIB) \
  26. $(STDLIBRARY_LIB) \
  27. $(ADMIN_LIB_PATH)\umiuuid.lib \
  28. $(SDK_LIB_PATH)\kernel32.lib \
  29. $(SDK_LIB_PATH)\advapi32.lib \
  30. $(SDK_LIB_PATH)\user32.lib \
  31. $(SDK_LIB_PATH)\oleaut32.lib \
  32. $(SDK_LIB_PATH)\ole32.lib \
  33. $(SDK_LIB_PATH)\uuid.lib \
  34. $(SDK_LIB_PATH)\msvcprt.lib \
  35. $(SDK_LIB_PATH)\rpcrt4.lib \
  36. $(SDK_LIB_PATH)\adsiid.lib
  37. # The INCLUDES variable specifies any include paths that are specific to
  38. # this source directory. Separate multiple paths with single
  39. # semicolons. Relative path specifications are okay.
  40. INCLUDES=$(INCLUDES); \
  41. $(ADMIN_INC_PATH); \
  42. $(WMIIDL_INC); \
  43. $(STDLIBRARY_INC); \
  44. $(SDK_INC_PATH)\atl30
  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. methprov.cpp \
  51. maindll.cpp \
  52. classfac.cpp
  53. # Next, specify options for the compiler using C_DEFINES.
  54. C_DEFINES=$(C_DEFINES) /D_WIN32_WINNT=0x0400 /DBUILDING_DLL
  55. #USER_C_FLAGS=/EHa
  56. DLLENTRY=_DllMainCRTStartup
  57. USE_MSVCRT=1
  58. USE_NATIVE_EH=1
  59. DLLDEF=$(O)\methprov.def
  60. MIDL_FLAGS=/client stub /server none
  61. # MSC_OPTIMIZATION=/Od