1#	$NetBSD: Makefile,v 1.2 2008/06/18 09:06:26 yamt Exp $
2#	$OpenBSD: Makefile,v 1.3 2006/11/26 11:31:13 deraadt Exp $
3
4PROG=	ftp-proxy
5SRCS=	ftp-proxy.c filter.c
6MAN=	ftp-proxy.8
7
8CFLAGS+= -I${.CURDIR}
9CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \
10         -Wno-uninitialized
11LDADD+=	-levent
12DPADD+= ${LIBEVENT}
13
14.include <bsd.prog.mk>
15