6b9a96fb35
* $FTPMODE is the documented way in ftp(1) to force passive, active, gate-ftp, or autodetect. * AFAIK, we haven't shipped any previous release with pftp in /usr/bin * no link was made for gate-ftp (and i don't think that makes sense in /usr/bin either) * even though the link isn't made, the support for pftp, gate-ftp, and the `-p' flag should remain since people may depend on having their own link (e.g, ~/bin/pftp -> /usr/bin/ftp) or aliases which use these things. it doesn't hurt to leave argv[0] checking in ftp's main().
17 lines
503 B
Makefile
17 lines
503 B
Makefile
# $NetBSD: Makefile,v 1.19 1999/04/16 23:01:55 lukem 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
|
|
|
|
# Uncomment the following to provide defaults for gate-ftp operation
|
|
#
|
|
#CPPFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
|
|
|
|
CPPFLAGS+= -DHAVE_TIMEGM # system has timegm(3), a UTC version of mktime
|
|
LDADD+= -ledit -ltermcap -lutil
|
|
DPADD+= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL}
|
|
|
|
.include <bsd.prog.mk>
|