blob: 2c9e912bc10e618438c3cb0383cf0460d13af47e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.2 2005/06/07 14:12:07 camield Exp $
PROG= ftp-proxy
SRCS= ftp-proxy.c filter.c
MAN= ftp-proxy.8
CFLAGS+= -I${.CURDIR}
CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \
-Wno-uninitialized
LDADD+= -levent
DPADD+= ${LIBEVENT}
.include <bsd.prog.mk>
|