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.

78 lines
2.4 KiB

  1. #
  2. # The TARGETNAME variable is defined by the developer. It is the name of
  3. # the target (component) that is being built by this makefile. It
  4. # should NOT include any path or file extension information.
  5. #
  6. TARGETNAME=SetSystemLocale
  7. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  8. # The first specifies where the target is to be build. The second specifies
  9. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  10. #
  11. TARGETPATH=$(SASS_BINDIR)
  12. TARGETTYPE=DYNLINK
  13. DLLENTRY=_DllMainCRTStartup
  14. DLLDEF=SetSystemLocale.def
  15. USE_STATIC_ATL=1
  16. USE_VCCOM=1
  17. USE_NATIVE_EH=1
  18. #
  19. # The INCLUDES variable specifies any include paths that are specific to
  20. # this source directory. Separate multiple directory paths with single
  21. # semicolons. Relative path specifications are okay.
  22. #
  23. INCLUDES=\
  24. $(SASS_INC);\
  25. $(BASEDIR)\public\sdk\inc\atl21; \
  26. $(BASEDIR)\public\sdk\inc\mfc42; \
  27. $(BASEDIR)\public\sdk\inc\crt; \
  28. $(BASEDIR)\public\sdk\inc\
  29. #
  30. # Compile for UNICODE
  31. #
  32. C_DEFINES=$(C_DEFINES) -DUNICODE
  33. C_DEFINES=$(C_DEFINES) -DEHsc
  34. MIDL_OPTIMIZATION=-Oicf -robust -no_format_opt -error all
  35. #
  36. # If you wish to generate assemply listings, uncomment the following line.
  37. #
  38. #USER_C_FLAGS=/Fa
  39. TARGETLIBS= \
  40. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  41. $(BASEDIR)\public\sdk\lib\*\user32.lib \
  42. $(BASEDIR)\public\sdk\lib\*\gdi32.lib \
  43. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  44. $(BASEDIR)\public\sdk\lib\*\ole32.lib \
  45. $(BASEDIR)\public\sdk\lib\*\oleaut32.lib \
  46. $(BASEDIR)\public\sdk\lib\*\winmm.lib \
  47. $(BASEDIR)\public\sdk\lib\*\uuid.lib \
  48. $(BASEDIR)\public\sdk\lib\*\Userenv.lib \
  49. $(SASS_LIB)\debug.lib \
  50. $(SASS_LIB)\sauuid.lib \
  51. $(SASS_LIB)\satrace.lib \
  52. #
  53. # The SOURCES variable is defined by the developer. It is a list of all the
  54. # source files for this component. Each source file should be on a separate
  55. # line using the line continuation character. This will minimize merge
  56. # conflicts if two developers adding source files to the same component.
  57. #
  58. # Whitespace is not permitted between the SOURCES keyword and the '='.
  59. # (Courtesy of BUILD.EXE)
  60. #
  61. SOURCES=\
  62. SetSystemLocale.idl \
  63. stdafx.cpp \
  64. SetSystemLocale.cpp \
  65. CSetSystemLocale.cpp \
  66. SetSystemLocale.rc \