mirror of
https://github.com/opnsense/src.git
synced 2026-03-27 13:13:13 -04:00
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
15 lines
350 B
Makefile
15 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>
|