freebsd-dev/usr.sbin/ftp-proxy/Makefile
Xin LI f972197651 Promote libevent to lib/ level and fold ftp-proxy into its parent Makefile.
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
2014-10-13 22:15:26 +00:00

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>