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.

86 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=PropSheet
  7. #
  8. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  9. # The first specifies where the target is to be build. The second specifies
  10. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  11. #
  12. TARGETPATH=$(SASS_BINDIR)
  13. TARGETTYPE=DYNLINK
  14. DLLENTRY=_DllMainCRTStartup
  15. DLLDEF=PropSheet.def
  16. #
  17. # The INCLUDES variable specifies any include paths that are specific to
  18. # this source directory. Separate multiple directory paths with single
  19. # semicolons. Relative path specifications are okay.
  20. #
  21. INCLUDES=\
  22. $(SASS_INC);\
  23. $(BASEDIR)\public\sdk\inc; \
  24. $(BASEDIR)\public\sdk\inc\mfc42; \
  25. $(BASEDIR)\public\sdk\inc\atl21; \
  26. #UMTYPE=windows
  27. #UMENTRY=wWinMainCRTStartup
  28. #UMENTRYABS=wWinMainCRTStartup
  29. USE_VCCOM=1
  30. USE_ATL=1
  31. ATL_VER=21
  32. #
  33. # If you wish to generate assemply listings, uncomment the following line.
  34. #
  35. #USER_C_FLAGS=/Fa
  36. TARGETLIBS= \
  37. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  38. $(BASEDIR)\public\sdk\lib\*\user32.lib \
  39. $(BASEDIR)\public\sdk\lib\*\gdi32.lib \
  40. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  41. $(BASEDIR)\public\sdk\lib\*\ole32.lib \
  42. $(BASEDIR)\public\sdk\lib\*\oleaut32.lib \
  43. $(BASEDIR)\public\sdk\lib\*\uuid.lib \
  44. $(BASEDIR)\public\sdk\lib\*\shell32.lib \
  45. $(BASEDIR)\public\sdk\lib\*\shlwapi.lib \
  46. $(BASEDIR)\public\sdk\lib\*\comctl32.lib \
  47. $(BASEDIR)\public\sdk\lib\*\netapi32.lib \
  48. $(SASS_LIB)\debug.lib \
  49. #
  50. # Compile for UNICODE
  51. #
  52. #C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE
  53. #
  54. # Do not use CRT in retail version
  55. #
  56. !IF "$(NTDEBUG)" == "retail"
  57. C_DEFINES=$(C_DEFINES) -D_ATL_MIN_CRT
  58. USE_NOLIBS=1
  59. !endif
  60. #NTTARGETFILE0= evtlog.h evtlog.mc
  61. #
  62. # The SOURCES variable is defined by the developer. It is a list of all the
  63. # source files for this component. Each source file should be on a separate
  64. # line using the line continuation character. This will minimize merge
  65. # conflicts if two developers adding source files to the same component.
  66. #
  67. # Whitespace is not permitted between the SOURCES keyword and the '='.
  68. # (Courtesy of BUILD.EXE)
  69. #
  70. SOURCES=\
  71. Chklst.cpp \
  72. PropSheet.cpp \
  73. PropSheet.rc \