]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/ftp/Makefile
This commit was generated by cvs2svn to compensate for changes in r159952,
[FreeBSD/FreeBSD.git] / usr.bin / ftp / Makefile
1 # $FreeBSD$
2 #       $NetBSD: Makefile,v 1.15 1997/10/18 15:31:20 lukem Exp $
3 #       from: @(#)Makefile      8.2 (Berkeley) 4/3/94
4
5 # Uncomment the following to provide defaults for gate-ftp operation
6 #
7 #CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
8
9 LUKEMFTP=       ${.CURDIR}/../../contrib/lukemftp
10 .PATH: ${LUKEMFTP}/src
11
12 PROG=   ftp
13 SRCS=   cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c progressbar.c \
14         ruserpass.c util.c
15
16 CFLAGS+=-I${.CURDIR} -I${LUKEMFTP} -DINET6
17 LDADD=  -ledit -ltermcap -lutil
18 DPADD=  ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL}
19
20 LINKS=  ${BINDIR}/ftp ${BINDIR}/pftp \
21         ${BINDIR}/ftp ${BINDIR}/gate-ftp
22 MLINKS= ftp.1 pftp.1 \
23         ftp.1 gate-ftp.1
24
25 .include <bsd.prog.mk>