Home | History | Annotate | Line # | Download | only in ftp
Makefile revision 1.9
      1  1.9  christos #	$NetBSD: Makefile,v 1.9 1997/03/13 22:38:39 christos Exp $
      2  1.7       tls #	from: @(#)Makefile	8.2 (Berkeley) 4/3/94
      3  1.1       cgd 
      4  1.8     lukem # define SMALLFTP if editing is to be disabled
      5  1.8     lukem #SMALLFTP=yes
      6  1.8     lukem 
      7  1.1       cgd PROG=	ftp
      8  1.9  christos SRCS=	cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
      9  1.9  christos 	util.c
     10  1.8     lukem 
     11  1.8     lukem .if defined(SMALLFTP)
     12  1.8     lukem CFLAGS+=-DSMALLFTP
     13  1.8     lukem .else
     14  1.8     lukem LDADD+=	-ledit -ltermcap
     15  1.8     lukem .endif
     16  1.1       cgd 
     17  1.1       cgd .include <bsd.prog.mk>
     18