Home | History | Annotate | Line # | Download | only in ftp-proxy
Makefile revision 1.4.2.1
      1  1.4.2.1  bouyer #	$NetBSD: Makefile,v 1.4.2.1 2011/02/08 16:20:16 bouyer Exp $
      2      1.3    yamt #	$OpenBSD: Makefile,v 1.3 2006/11/26 11:31:13 deraadt Exp $
      3      1.1    yamt 
      4      1.1    yamt PROG=	ftp-proxy
      5      1.3    yamt SRCS=	ftp-proxy.c filter.c
      6      1.1    yamt MAN=	ftp-proxy.8
      7      1.1    yamt 
      8      1.3    yamt CFLAGS+= -I${.CURDIR}
      9      1.3    yamt LDADD+=	-levent
     10      1.3    yamt DPADD+= ${LIBEVENT}
     11      1.3    yamt 
     12      1.1    yamt CPPFLAGS+=-I${NETBSDSRCDIR}/sys
     13      1.1    yamt 
     14      1.2   peter .include <bsd.own.mk>
     15      1.2   peter 
     16  1.4.2.1  bouyer # NPF support
     17  1.4.2.1  bouyer .if (${MKNPF} != "no")
     18  1.4.2.1  bouyer SRCS+=		npf.c
     19  1.4.2.1  bouyer CPPFLAGS+=	-DWITH_NPF
     20  1.4.2.1  bouyer LDADD+=		-lnpf -lprop
     21  1.4.2.1  bouyer .endif
     22  1.4.2.1  bouyer 
     23      1.2   peter # IP Filter support
     24      1.2   peter .if (${MKIPFILTER} != "no")
     25      1.1    yamt SRCS+=	ipf.c
     26      1.2   peter CPPFLAGS+=-I${NETBSDSRCDIR}/sys/dist/ipf -DWITH_IPF
     27      1.2   peter .endif
     28      1.1    yamt 
     29      1.3    yamt BINDIR= /usr/sbin
     30      1.1    yamt 
     31      1.1    yamt .include <bsd.prog.mk>
     32      1.1    yamt 
     33      1.3    yamt .PATH: ${NETBSDSRCDIR}/dist/pf/usr.sbin/ftp-proxy
     34