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.

72 lines
2.2 KiB

  1. NAME=SAAlertEmailConsumerProvider
  2. #
  3. # The TARGETNAME variable is defined by the developer. It is the name of
  4. # the target (component) that is being built by this makefile. It
  5. # should NOT include any path or file extension information.
  6. #
  7. TARGETNAME=$(NAME)
  8. #
  9. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  10. # The first specifies where the target is to be build. The second specifies
  11. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  12. #
  13. TARGETPATH=$(SASS_BINDIR)
  14. TARGETTYPE=DYNLINK
  15. DLLENTRY=_DllMainCRTStartup
  16. DLLDEF=$(NAME).def
  17. ATL_VER=30
  18. USE_STL=1
  19. USE_VCCOM=1
  20. USE_MSVCRT=1
  21. USE_RTTI=1
  22. # enable unwind semantics. remove C4530: warnings
  23. USER_C_FLAGS=/EHsc
  24. C_DEFINES=$(C_DEFINES) -DUNICODE
  25. #
  26. # The INCLUDES variable specifies any include paths that are specific to
  27. # this source directory. Separate multiple directory paths with single
  28. # semicolons. Relative path specifications are okay.
  29. #
  30. INCLUDES=\
  31. $(SASS_INC);\
  32. $(BASEDIR)\public\sdk\inc\crt; \
  33. $(BASEDIR)\public\sdk\inc; \
  34. $(BASEDIR)\public\sdk\inc\atl30; \
  35. TARGETLIBS= \
  36. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  37. $(BASEDIR)\public\sdk\lib\*\user32.lib \
  38. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  39. $(BASEDIR)\public\sdk\lib\*\ole32.lib \
  40. $(BASEDIR)\public\sdk\lib\*\oleaut32.lib \
  41. $(BASEDIR)\public\sdk\lib\*\uuid.lib \
  42. $(BASEDIR)\public\sdk\lib\*\wbemuuid.lib \
  43. $(BASEDIR)\public\sdk\lib\*\adsiid.lib \
  44. $(BASEDIR)\public\sdk\lib\*\activeds.lib \
  45. $(SASS_LIB)\satrace.lib \
  46. $(SASS_LIB)\sauuid.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. SAAlertEmailConsumerProvider.rc \
  58. CAlertEmailConsumerProvider.cpp \
  59. CAlertEmailConsumer.cpp \
  60. OleServerExport.cpp \
  61. CFactory.cpp