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.

44 lines
1.4 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. WMIPRECOMPSHARED=1
  9. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  10. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  11. TARGETNAME=esscli
  12. TARGETPATH=obj
  13. TARGETTYPE=LIBRARY
  14. # The INCLUDES variable specifies any include paths that are specific to
  15. # this source directory. Separate multiple paths with single
  16. # semicolons. Relative path specifications are okay.
  17. INCLUDES=$(INCLUDES); \
  18. $(ESSCLI_INC); \
  19. $(WBEMIDL_INC); \
  20. $(WBEMINT_INC); \
  21. $(STDLIBRARY_INC); \
  22. $(WBEMCOMN_INC)
  23. # The developer defines the SOURCES macro. It contains a list of all the
  24. # source files for this component. Specify each source file on a separate
  25. # line using the line-continuation character. This minimizes merge
  26. # conflicts if two developers are adding source files to the same component.
  27. #
  28. # the rest of the esscli files cannot be in this library until we remove the
  29. # dependency on fastobj from evaltree and analyser.
  30. #
  31. SOURCES= \
  32. ..\wmiauthz.cpp \
  33. ..\groupsforuser.cpp \
  34. # Next, specify options for the compiler using C_DEFINES.
  35. C_DEFINES=$(C_DEFINES) /D__WINNT_BUILD__ /D_UNICODE /DUNICODE
  36. USE_NATIVE_EH=1
  37. USE_MSVCRT=1
  38. USE_STL=1