diff options
author | mikeh <mikeh@FreeBSD.org> | 2001-12-13 23:46:44 +0000 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2001-12-13 23:46:44 +0000 |
commit | 3bd06972c4abbd41e4b7f5e898db55e509056daa (patch) | |
tree | b2b4624c2fb26f66d8f381a7fa80e22e726b9af6 /usr.bin/ftp/Makefile | |
parent | a194c4400184a010d8a5bf8c6196b5072c814c22 (diff) | |
download | FreeBSD-src-3bd06972c4abbd41e4b7f5e898db55e509056daa.zip FreeBSD-src-3bd06972c4abbd41e4b7f5e898db55e509056daa.tar.gz |
Connect lukemftp to the build as the default ftp client. Lukemftp
supports most of the previous features of FreeBSD ftp, but has been
better maintained and includes new features.
Diffstat (limited to 'usr.bin/ftp/Makefile')
-rw-r--r-- | usr.bin/ftp/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 6a3e506..c86e153 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -6,13 +6,16 @@ # #CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21 +LUKEMFTP= ${.CURDIR}/../../contrib/lukemftp +.PATH: ${LUKEMFTP}/src + PROG= ftp SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ util.c -CFLAGS+=-DINET6 -LDADD+= -ledit -ltermcap -DPADD+= ${LIBEDIT} ${LIBTERMCAP} +CFLAGS+=-I${.CURDIR} -I${LUKEMFTP} +LDADD+= -ledit -ltermcap -lutil +DPADD+= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL} LINKS= ${BINDIR}/ftp ${BINDIR}/pftp \ ${BINDIR}/ftp ${BINDIR}/gate-ftp |