Source code of Windows XP (NT5)
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.

52 lines
1.4 KiB

  1. PROJDIR=..\..
  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=ftcomp
  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=obj
  14. TARGETTYPE=DYNLINK
  15. DLLENTRY=DllMain
  16. C_DEFINES=-DWIN32 -DUNICODE -D_UNICODE
  17. TARGETLIBS=\
  18. $(SDK_LIB_PATH)\kernel32.lib \
  19. $(SDK_LIB_PATH)\user32.lib \
  20. $(SDK_LIB_PATH)\advapi32.lib
  21. #
  22. # The INCLUDES variable specifies any include paths that are specific to
  23. # this source directory. Separate multiple directory paths with single
  24. # semicolons. Relative path specifications are okay.
  25. #
  26. INCLUDES=\
  27. $(PROJECT_ROOT)\ntsetup\winnt32\dll;\
  28. $(PROJECT_ROOT)\ntsetup\inc
  29. USE_MSVCRT=1
  30. #
  31. # The SOURCES variable is defined by the developer. It is a list of all the
  32. # source files for this component. Each source file should be on a separate
  33. # line using the line continuation character. This will minimize merge
  34. # conflicts if two developers adding source files to the same component.
  35. #
  36. # Whitespace is not permitted between the SOURCES keyword and the '='.
  37. # (Courtesy of BUILD.EXE)
  38. #
  39. SOURCES=\
  40. ftcomp.rc \
  41. ftcomp.cpp