mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
bdcbfde31e
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
33 lines
641 B
Makefile
33 lines
641 B
Makefile
# $NetBSD: Makefile,v 1.15 1997/10/18 15:31:20 lukem Exp $
|
|
|
|
.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>
|