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 4 PROG= ftp-proxy 5 SRCS= ftp-proxy.c filter.c 6 MAN= ftp-proxy.8 7 8 CFLAGS+= -I${.CURDIR} 9 CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \ 10 -Wno-uninitialized 11 LDADD+= -levent 12 DPADD+= ${LIBEVENT} 13 14 .include <bsd.prog.mk> 15