NetBSD/usr.bin/ftp/Makefile

27 lines
625 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.26 2003/01/21 16:08:06 jhawk Exp $
1997-01-09 23:18:21 +03:00
# from: @(#)Makefile 8.2 (Berkeley) 4/3/94
1993-03-21 12:45:37 +03:00
PROG= ftp
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c \
progressbar.c ruserpass.c util.c
# Uncomment the following to provide defaults for gate-ftp operation
#
1997-10-14 19:09:22 +04:00
#CPPFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
.if defined(SMALLPROG)
CPPFLAGS+=-DNO_EDITCOMPLETE -DNO_ABOUT
.else
LDADD+= -ledit -ltermcap
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
.endif
.if !defined(SMALLPROG) || defined(SMALLPROG_INET6)
CPPFLAGS+= -DINET6
.endif
1999-12-12 05:14:53 +03:00
cmds.o fetch.o: version.h
main.o: ftp_var.h
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>