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.

81 lines
1.8 KiB

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. Build the File Replication Service (FRS) executable.
  7. Author:
  8. 14-Mar-97 Billy Fuller
  9. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  10. $(SDK_LIB_PATH)\ntdsatq.lib \
  11. !ENDIF
  12. TARGETNAME=ntfrs
  13. TARGETPATH=obj
  14. TARGETTYPE=PROGRAM
  15. C_DEFINES=$(C_DEFINES) -DUNICODE=1 -D_UNICODE=1 -DLDAP_UNICODE=1 -DDBG=1
  16. !IF "$(NTFRS_DS_FREE)" == "1"
  17. C_DEFINES=$(C_DEFINES) -DDS_FREE=1
  18. !ENDIF
  19. TARGETLIBS=\
  20. $(SDK_LIB_PATH)\wldap32.lib \
  21. $(SDK_LIB_PATH)\netapi32.lib \
  22. $(SDK_LIB_PATH)\esent.lib \
  23. $(SDK_LIB_PATH)\rpcrt4.lib \
  24. $(SDK_LIB_PATH)\rpcns4.lib \
  25. $(SDK_LIB_PATH)\dbghelp.lib \
  26. $(SDK_LIB_PATH)\user32.lib \
  27. $(SDK_LIB_PATH)\ntdll.lib \
  28. $(SDK_LIB_PATH)\netlib.lib \
  29. $(SDK_LIB_PATH)\ntdsapi.lib \
  30. $(SDK_LIB_PATH)\ws2_32.lib \
  31. $(SDK_LIB_PATH)\secur32.lib \
  32. $(SDK_LIB_PATH)\advapip.lib \
  33. $(SDK_LIB_PATH)\ntfrsapi.lib \
  34. $(SDK_LIB_PATH)\vssapi.lib \
  35. $(SDK_LIB_PATH)\ole32.lib \
  36. $(DS_LIB_PATH)\rsa32.lib \
  37. ..\repl\$(O)\version.res \
  38. ..\util\$(O)\util.lib \
  39. ..\frs\$(O)\frs.lib \
  40. ..\repl\$(O)\NTREPL.lib \
  41. ..\perfmon\$(O)\perrepsr.lib \
  42. ..\writer\$(O)\writer.lib
  43. INCLUDES=..\inc;..\idl\$(O); \
  44. ..\ntfrsres\$(O); \
  45. $(NET_INC_PATH); \
  46. $(DS_INC_PATH)\crypto; \
  47. $(PROJECT_ROOT)\netapi\inc;
  48. USE_MSVCRT=1
  49. UMTYPE=console
  50. SOURCES=\
  51. main.c
  52. MISCFILES=\
  53. ntfrs.sld
  54. #
  55. # Commit a large enough stack to avoid ever running out on a tight memory system.
  56. #
  57. !if $(386)
  58. LINKER_STACKCOMMITSIZE=32768
  59. !else
  60. LINKER_STACKCOMMITSIZE=65536
  61. !endif