b5be5c35db
ftp tools aren't that useful nowadays but some might want them. Create a FreeBSD-ftp package so users have a choice to have them or not. Differential Revision: https://reviews.freebsd.org/D31794
35 lines
696 B
Makefile
35 lines
696 B
Makefile
# $FreeBSD$
|
|
# $NetBSD: Makefile,v 1.15 1997/10/18 15:31:20 lukem Exp $
|
|
# from: @(#)Makefile 8.2 (Berkeley) 4/3/94
|
|
|
|
.include <src.opts.mk>
|
|
|
|
# Uncomment the following to provide defaults for gate-ftp operation
|
|
#
|
|
#CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
|
|
|
|
PACKAGE= ftp
|
|
|
|
TNFTP= ${SRCTOP}/contrib/tnftp
|
|
.PATH: ${TNFTP}/src
|
|
|
|
PROG= ftp
|
|
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c \
|
|
progressbar.c ruserpass.c util.c
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
CFLAGS+= -I${.CURDIR} -I${TNFTP}
|
|
LIBADD= edit
|
|
|
|
WARNS?= 2
|
|
|
|
LINKS= ${BINDIR}/ftp ${BINDIR}/pftp \
|
|
${BINDIR}/ftp ${BINDIR}/gate-ftp
|
|
MLINKS= ftp.1 pftp.1 \
|
|
ftp.1 gate-ftp.1
|
|
|
|
.include <bsd.prog.mk>
|