70 lines
1.4 KiB
Plaintext
70 lines
1.4 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sources.
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This file specifies the target component being built and the list of
|
||
|
sources files needed to build that component. Also specifies optional
|
||
|
compiler switches and libraries that are unique for the component being
|
||
|
built.
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Steve Wood (stevewo) 12-Apr-1989
|
||
|
|
||
|
|
||
|
Revision History:
|
||
|
Murali R. Krishnan (MuraliK) 15-Nov-1995 Removed unwanted libs (undoc)
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
!include ..\..\..\place.inc
|
||
|
|
||
|
MAJORCOMP=internet
|
||
|
MINORCOMP=ftpsapi
|
||
|
|
||
|
# It is named ftpsapi2 to keep the name within 8 char limits and
|
||
|
# also not conflict with the old name ftpsvapi
|
||
|
TARGETNAME=ftpsapi2
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
|
||
|
TARGETLIBS=\
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(PROJECT_ROOT)\iis\svcs\iisrtl\$(O)\iisrtl.lib \
|
||
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
||
|
|
||
|
|
||
|
USE_MSVCRT=1
|
||
|
|
||
|
# Treat warnings as errors
|
||
|
MSC_WARNING_LEVEL = /W3 /WX
|
||
|
|
||
|
INCLUDES=.;..\idl\$(O);..\..\inc;..;..\..\..\inc;
|
||
|
|
||
|
SOURCES=ftpbind.c \
|
||
|
ftpstub.c \
|
||
|
ftpsvc_c_stub.c \
|
||
|
ftpsvc.rc
|
||
|
|
||
|
C_DEFINES=-DRPC_NO_WINDOWS_H
|
||
|
|
||
|
!IFDEF BUILD_AS_CONSOLE_APP
|
||
|
|
||
|
UMAPPL=ftpadmin
|
||
|
UMTYPE=console
|
||
|
UMLIBS= $(SDK_LIB_PATH)\user32.lib \
|
||
|
$(O)\ftpsapi2.lib \
|
||
|
$(PROJECT_ROOT)\iis\svcs\infocomm\info\client\$(O)\infoadmn.lib \
|
||
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
||
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
||
|
..\..\lib\*\inetrtl.lib
|
||
|
!ENDIF
|