f972197651
This allows us to use libevent for other application in the future. For now libevent is still INTERNALLIB and no shared library is installed. MFC after: 1 month
18 lines
244 B
Makefile
18 lines
244 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/pf/ftp-proxy
|
|
|
|
PROG= ftp-proxy
|
|
MAN= ftp-proxy.8
|
|
|
|
SRCS= ftp-proxy.c filter.c
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../contrib/pf/libevent
|
|
|
|
LDADD+= ${LIBEVENT}
|
|
DPADD+= ${LIBEVENT}
|
|
|
|
WARNS?= 3
|
|
|
|
.include <bsd.prog.mk>
|