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.

60 lines
1.7 KiB

  1. !IF 0
  2. Copyright (C) Microsoft Corporation, 1997 - 1999
  3. Module Name:
  4. sources.
  5. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  6. !ENDIF
  7. !include ..\..\newservr\sources.inc
  8. #
  9. # The TARGETNAME variable is defined by the developer. It is the name of
  10. # the target (component) that is being built by this makefile. It
  11. # should NOT include any path or file extension information.
  12. #
  13. TARGETNAME=nsdrts
  14. #
  15. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  16. # The first specifies where the target is to be build. The second specifies
  17. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  18. #
  19. TARGETPATH=..\lib
  20. TARGETTYPE=PROGRAM
  21. INCLUDES=$(INCLUDES);..\idl
  22. #
  23. # The SOURCES variable is defined by the developer. It is a list of all the
  24. # source files for this component. Each source file should be on a separate
  25. # line using the line continuation character. This will minimize merge
  26. # conflicts if two developers adding source files to the same component.
  27. #
  28. SOURCES=drts.cxx \
  29. drtp.cxx \
  30. drt_s.c
  31. LINKLIBS=$(LIBDIR)\*\Rpcrt4.lib \
  32. $(LIBDIR)\*\Rpcns4.lib \
  33. $(LIBDIR)\*\netapi32.lib \
  34. $(LIBDIR)\*\advapi32.lib \
  35. $(LIBDIR)\*\ntdll.lib \
  36. $(LIBDIR)\*\ole32.lib \
  37. $(SDK_LIB_PATH)\adsiid.lib \
  38. $(SDK_LIB_PATH)\activeds.lib \
  39. $(SDK_LIB_PATH)\noutils.lib \
  40. $(SDK_LIB_PATH)\nocairo.lib \
  41. $(SDK_LIB_PATH)\kernel32.lib \
  42. $(SDK_LIB_PATH)\shell32.lib \
  43. $(SDK_LIB_PATH)\user32.lib \
  44. $(SDK_LIB_PATH)\oleaut32.lib \
  45. $(SDK_LIB_PATH)\uuid.lib
  46. #BUGBUG:: Remove the linklibs that are not necessary.