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.

41 lines
1.4 KiB

  1. ############################################################################
  2. #
  3. # Copyright Microsoft Corporation. All rights reserved.
  4. #
  5. ############################################################################
  6. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  7. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  8. # The TARGETLIBS macro specifies additional libraries to link against your target
  9. # image. Each library path specification should contain an asterisk (*)
  10. # where the machine-specific subdirectory name should go.
  11. TARGETLIBS= \
  12. $(WMIIDL_LIB) \
  13. $(SDK_LIB_PATH)\rpcrt4.lib \
  14. $(SDK_LIB_PATH)\oleaut32.lib \
  15. $(SDK_LIB_PATH)\advapi32.lib \
  16. $(SDK_LIB_PATH)\kernel32.lib
  17. # The INCLUDES variable specifies any include paths that are specific to
  18. # this source directory. Separate multiple paths with single
  19. # semicolons. Relative path specifications are okay.
  20. INCLUDES=$(INCLUDES); \
  21. $(WMIIDL_SRC_INC)
  22. # The developer defines the SOURCES macro. It contains a list of all the
  23. # source files for this component. Specify each source file on a separate
  24. # line using the line-continuation character. This minimizes merge
  25. # conflicts if two developers are adding source files to the same component.
  26. SOURCES= \
  27. ..\wbemdc.idl \
  28. $(O)\wbemdc_p.c \
  29. $(O)\wbemdc_i.c \
  30. $(O)\dlldata.c \
  31. ..\ver.rc
  32. # Next, specify options for the compiler using C_DEFINES.
  33. C_DEFINES=$(C_DEFINES) /DREGISTER_PROXY_DLL
  34. MIDL_NO_ROBUST=1