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.

71 lines
2.2 KiB

  1. # The TARGETNAME variable is defined by the developer. It is the name of
  2. # the target (component) that is being built by this makefile. It
  3. # should NOT include any path or file extension information.
  4. #
  5. TARGETNAME=setalertemail
  6. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  7. # The first specifies where the target is to be build. The second specifies
  8. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  9. #
  10. TARGETPATH=$(SASS_BINDIR)
  11. TARGETTYPE=DYNLINK
  12. DLLENTRY=_DllMainCRTStartup
  13. DLLDEF=Setalertemail.def
  14. USE_STATIC_ATL=1
  15. USE_VCCOM=1
  16. USE_NATIVE_EH=1
  17. #
  18. # The INCLUDES variable specifies any include paths that are specific to
  19. # this source directory. Separate multiple directory paths with single
  20. # semicolons. Relative path specifications are okay.
  21. #
  22. INCLUDES=\
  23. $(SASS_INC);\
  24. # ..\msg; \
  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. TARGETLIBS= \
  36. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  37. $(BASEDIR)\public\sdk\lib\*\user32.lib \
  38. $(BASEDIR)\public\sdk\lib\*\gdi32.lib \
  39. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  40. $(BASEDIR)\public\sdk\lib\*\ole32.lib \
  41. $(BASEDIR)\public\sdk\lib\*\oleaut32.lib \
  42. $(BASEDIR)\public\sdk\lib\*\winmm.lib \
  43. $(BASEDIR)\public\sdk\lib\*\uuid.lib \
  44. $(SASS_LIB)\debug.lib \
  45. $(SASS_LIB)\sauuid.lib \
  46. $(SASS_LIB)\satrace.lib \
  47. #
  48. # The SOURCES variable is defined by the developer. It is a list of all the
  49. # source files for this component. Each source file should be on a separate
  50. # line using the line continuation character. This will minimize merge
  51. # conflicts if two developers adding source files to the same component.
  52. #
  53. # Whitespace is not permitted between the SOURCES keyword and the '='.
  54. # (Courtesy of BUILD.EXE)
  55. #
  56. SOURCES=\
  57. stdafx.cpp \
  58. Setalertemail.cpp \
  59. configalertemail.cpp \
  60. Setalertemail.rc \