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.

57 lines
1.7 KiB

  1. ############################################################################
  2. #
  3. # Copyright � Microsoft Corporation. All rights reserved.
  4. #
  5. ############################################################################
  6. WMIPLATFORM=WIN2K
  7. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  8. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  9. TARGETNAME=wbemsvc
  10. TARGETPATH=obj
  11. TARGETTYPE=DYNLINK
  12. # The TARGETLIBS macro specifies additional libraries to link against your target
  13. # image. Each library path specification should contain an asterisk (*)
  14. # where the machine-specific subdirectory name should go.
  15. TARGETLIBS= \
  16. $(WMIIDL_LIB) \
  17. $(SDK_LIB_PATH)\rpcrt4.lib \
  18. $(SDK_LIB_PATH)\oleaut32.lib \
  19. $(SDK_LIB_PATH)\advapi32.lib \
  20. $(SDK_LIB_PATH)\kernel32.lib
  21. # The INCLUDES variable specifies any include paths that are specific to
  22. # this source directory. Separate multiple paths with single
  23. # semicolons. Relative path specifications are okay.
  24. INCLUDES=$(INCLUDES); \
  25. $(WMIIDL_SRC_INC)
  26. # The developer defines the SOURCES macro. It contains a list of all the
  27. # source files for this component. Specify each source file on a separate
  28. # line using the line-continuation character. This minimizes merge
  29. # conflicts if two developers are adding source files to the same component.
  30. SOURCES= \
  31. ..\wbemcli.idl \
  32. ..\wbemprov.idl \
  33. ..\wbemtran.idl \
  34. ..\wmiutils.idl \
  35. ..\wbemint.idl \
  36. $(O)\wbemcli_p.c \
  37. $(O)\wbemprov_p.c \
  38. $(O)\wbemtran_p.c \
  39. $(O)\wbemint_p.c \
  40. $(O)\wbemint_i.c \
  41. ..\dlldata2.c \
  42. ver.rc
  43. # Next, specify options for the compiler using C_DEFINES.
  44. C_DEFINES=$(C_DEFINES) /DREGISTER_PROXY_DLL
  45. USER_C_FLAGS=/EHa
  46. USE_MSVCRT=1
  47. IDL_TYPE=ole
  48. DLLENTRY=_DllMainCRTStartup
  49. DLLDEF=$(O)\wbemsvc.def