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.

42 lines
1.3 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=utils
  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_LIB_TARGETPATH)
  13. TARGETTYPE=LIBRARY
  14. #
  15. # The INCLUDES variable specifies any include paths that are specific to
  16. # this source directory. Separate multiple directory paths with single
  17. # semicolons. Relative path specifications are okay.
  18. #
  19. INCLUDES=\
  20. $(SASS_INC);\
  21. $(BASEDIR)\public\sdk\inc\atl21
  22. #
  23. # Compile for UNICODE
  24. #
  25. C_DEFINES=$(C_DEFINES) -DUNICODE
  26. #
  27. # The SOURCES variable is defined by the developer. It is a list of all the
  28. # source files for this component. Each source file should be on a separate
  29. # line using the line continuation character. This will minimize merge
  30. # conflicts if two developers adding source files to the same component.
  31. #
  32. # Whitespace is not permitted between the SOURCES keyword and the '='.
  33. # (Courtesy of BUILD.EXE)
  34. #
  35. SOURCES=\
  36. eventlog.cpp \
  37. mem.cpp \