Home | History | Annotate | Line # | Download | only in ftp
Makefile revision 1.27
      1  1.27  christos #	$NetBSD: Makefile,v 1.27 2004/06/06 01:37:41 christos Exp $
      2   1.7       tls #	from: @(#)Makefile	8.2 (Berkeley) 4/3/94
      3   1.1       cgd 
      4   1.1       cgd PROG=	ftp
      5  1.26     jhawk SRCS=	cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c \
      6  1.26     jhawk 	progressbar.c ruserpass.c util.c
      7  1.13     lukem 
      8  1.13     lukem # Uncomment the following to provide defaults for gate-ftp operation
      9  1.13     lukem #
     10  1.14  christos #CPPFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
     11  1.20    itojun 
     12  1.24     lukem .if defined(SMALLPROG)
     13  1.27  christos CPPFLAGS+=-DNO_EDITCOMPLETE -DNO_ABOUT -DNO_AUTH -DNO_HELP -DNO_STATUS
     14  1.24     lukem .else
     15  1.24     lukem LDADD+=	-ledit -ltermcap
     16  1.24     lukem DPADD+=	${LIBEDIT} ${LIBTERMCAP}
     17  1.24     lukem .endif
     18  1.24     lukem 
     19  1.24     lukem .if !defined(SMALLPROG) || defined(SMALLPROG_INET6)
     20  1.20    itojun CPPFLAGS+= -DINET6
     21  1.24     lukem .endif
     22  1.22     lukem 
     23  1.23     lukem cmds.o fetch.o: version.h
     24  1.22     lukem main.o:	ftp_var.h
     25   1.1       cgd 
     26   1.1       cgd .include <bsd.prog.mk>
     27