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.

56 lines
1.6 KiB

  1. TERMSRV_ROOT = $(SDXROOT)\termsrv
  2. MAKS_LIBU = $(TERMSRV_ROOT)\setup\lib\$O\maksu.lib
  3. MAKS_LIBA = $(TERMSRV_ROOT)\setup\lib\$O\maksa.lib
  4. MAKS_INC = $(TERMSRV_ROOT)\setup\inc
  5. #
  6. # The TARGETNAME variable is defined by the developer. It is the name of
  7. # the target (component) that is being built by this makefile. It
  8. # should NOT include any path or file extension information.
  9. #
  10. TARGETNAME=tscomp
  11. #
  12. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  13. # The first specifies where the target is to be build. The second specifies
  14. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  15. #
  16. TARGETPATH=obj
  17. TARGETTYPE=DYNLINK
  18. DLLENTRY=DllMain
  19. C_DEFINES=-DWIN32 -DUNICODE -D_UNICODE
  20. TARGETLIBS=\
  21. $(SDK_LIB_PATH)\kernel32.lib \
  22. $(SDK_LIB_PATH)\user32.lib \
  23. $(SDK_LIB_PATH)\advapi32.lib \
  24. $(MAKS_LIBU)
  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. $(BASE_INC_PATH); \
  32. $(MAKS_INC)
  33. USE_MSVCRT=1
  34. #
  35. # The SOURCES variable is defined by the developer. It is a list of all the
  36. # source files for this component. Each source file should be on a separate
  37. # line using the line continuation character. This will minimize merge
  38. # conflicts if two developers adding source files to the same component.
  39. #
  40. # Whitespace is not permitted between the SOURCES keyword and the '='.
  41. # (Courtesy of BUILD.EXE)
  42. #
  43. SOURCES=\
  44. tscomp.rc \
  45. tscomp.cpp