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.

53 lines
1.6 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=sauuid
  6. #
  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_LIB_TARGETPATH)
  12. TARGETTYPE=LIBRARY
  13. #
  14. # The INCLUDES variable specifies any include paths that are specific to
  15. # this source directory. Separate multiple directory paths with single
  16. # semicolons. Relative path specifications are okay.
  17. #
  18. #INCLUDES=\
  19. #
  20. # Compile for UNICODE
  21. #
  22. C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE
  23. #
  24. # The SOURCES variable is defined by the developer. It is a list of all the
  25. # source files for this component. Each source file should be on a separate
  26. # line using the line continuation character. This will minimize merge
  27. # conflicts if two developers adding source files to the same component.
  28. #
  29. # Whitespace is not permitted between the SOURCES keyword and the '='.
  30. # (Courtesy of BUILD.EXE)
  31. #
  32. SOURCES=\
  33. appsrvcs_i.c \
  34. elementmgr_i.c \
  35. salangchange_i.c \
  36. salocmgr_i.c \
  37. servicesurrogate_i.c \
  38. taskcoordinator_i.c \
  39. taskctx_i.c \
  40. satransport_i.c \
  41. comhelper_i.c \
  42. initsrvc_i.c \
  43. appmgr_i.c \
  44. sahelper_i.c \
  45. saalertboottask_i.c \
  46. setalertemail_i.c \