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.

69 lines
1.4 KiB

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Steve Wood (stevewo) 12-Apr-1989
  12. Revision History:
  13. Murali R. Krishnan (MuraliK) 15-Nov-1995 Removed unwanted libs (undoc)
  14. !ENDIF
  15. !include ..\..\..\place.inc
  16. MAJORCOMP=internet
  17. MINORCOMP=ftpsapi
  18. # It is named ftpsapi2 to keep the name within 8 char limits and
  19. # also not conflict with the old name ftpsvapi
  20. TARGETNAME=ftpsapi2
  21. TARGETPATH=obj
  22. TARGETTYPE=DYNLINK
  23. TARGETLIBS=\
  24. $(SDK_LIB_PATH)\user32.lib \
  25. $(SDK_LIB_PATH)\kernel32.lib \
  26. $(PROJECT_ROOT)\iis\svcs\iisrtl\$(O)\iisrtl.lib \
  27. $(SDK_LIB_PATH)\rpcrt4.lib \
  28. USE_MSVCRT=1
  29. # Treat warnings as errors
  30. MSC_WARNING_LEVEL = /W3 /WX
  31. INCLUDES=.;..\idl\$(O);..\..\inc;..;..\..\..\inc;
  32. SOURCES=ftpbind.c \
  33. ftpstub.c \
  34. ftpsvc_c_stub.c \
  35. ftpsvc.rc
  36. C_DEFINES=-DRPC_NO_WINDOWS_H
  37. !IFDEF BUILD_AS_CONSOLE_APP
  38. UMAPPL=ftpadmin
  39. UMTYPE=console
  40. UMLIBS= $(SDK_LIB_PATH)\user32.lib \
  41. $(O)\ftpsapi2.lib \
  42. $(PROJECT_ROOT)\iis\svcs\infocomm\info\client\$(O)\infoadmn.lib \
  43. $(SDK_LIB_PATH)\rpcrt4.lib \
  44. $(SDK_LIB_PATH)\ws2_32.lib \
  45. ..\..\lib\*\inetrtl.lib
  46. !ENDIF