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.

40 lines
1.3 KiB

  1. ############################################################################
  2. #
  3. # Copyright Microsoft Corporation. All rights reserved.
  4. #
  5. ############################################################################
  6. WMIPRECOMPSHARED=1
  7. !include $(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  8. SOURCES_USED=$(PROJECT_ROOT)\wmi\wbem\common\makefile.cmn
  9. TARGETNAME=stdlibrary
  10. TARGETPATH=obj
  11. TARGETTYPE=LIBRARY
  12. # The INCLUDES variable specifies any include paths that are specific to
  13. # this source directory. Separate multiple paths with single
  14. # semicolons. Relative path specifications are okay.
  15. INCLUDES=$(INCLUDES); \
  16. $(STDLIBRARY_INC); \
  17. $(WBEMCOMN_INC)
  18. # The developer defines the SOURCES macro. It contains a list of all the
  19. # source files for this component. Specify each source file on a separate
  20. # line using the line-continuation character. This minimizes merge
  21. # conflicts if two developers are adding source files to the same component.
  22. SOURCES= \
  23. ..\cominit.cpp \
  24. ..\genlex.cpp \
  25. ..\objpath.cpp \
  26. ..\opathlex.cpp \
  27. ..\sqllex.cpp \
  28. ..\sql_1.cpp
  29. # Next, specify options for the compiler using C_DEFINES.
  30. C_DEFINES=$(C_DEFINES) /D__WINNT_BUILD__
  31. WIN32_WINNT_VERSION=0x0400
  32. USE_NATIVE_EH=1
  33. USE_MSVCRT=1
  34. USE_STL=1