1 # $NetBSD: Makefile,v 1.20 1999/07/02 08:07:40 itojun Exp $ 2 # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 3 4 PROG= ftp 5 SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ 6 util.c 7 8 # Uncomment the following to provide defaults for gate-ftp operation 9 # 10 #CPPFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21 11 12 CPPFLAGS+= -DHAVE_TIMEGM # system has timegm(3), a UTC version of mktime 13 LDADD+= -ledit -ltermcap -lutil 14 DPADD+= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL} 15 16 CPPFLAGS+= -DINET6 17 18 .include <bsd.prog.mk> 19