5fc864b26d
work of Luke Mewburn. This includes, but is not limited to : - commandline editing and history. - local and remote filename completion. - a new progress display. - the ability to access files using either the ftp or http protocols, and use http proxies for ftp transfers. The FreeeBSD "restricted ports" functionality was preserved. Obtained from: NetBSD
16 lines
350 B
Makefile
16 lines
350 B
Makefile
# $Id$
|
|
# $NetBSD: Makefile,v 1.11 1997/03/24 21:59:36 christos Exp $
|
|
# from: @(#)Makefile 8.2 (Berkeley) 4/3/94
|
|
|
|
PROG= ftp
|
|
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
|
|
util.c
|
|
|
|
LDADD+= -ledit -ltermcap
|
|
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
|
|
|
|
LINKS= ${BINDIR}/ftp ${BINDIR}/pftp
|
|
MLINKS= ftp.1 pftp.1
|
|
|
|
.include <bsd.prog.mk>
|