freebsd-dev/usr.sbin/ftp-proxy/Makefile
Emmanuel Vadot 06a69951fb pkgbase: Put ftp-proxy in the FreeBSD-pf package
It belongs here.
Also this unbloat FreeBSD-utilities a bit and it will not depend
on the FreeBSD-libevent1 package now.

Sponsored by:	Beckhoff Automation GmbH & Co. KG
Differential Revision:	https://reviews.freebsd.org/D38226
2023-02-08 08:49:43 +01:00

19 lines
282 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/contrib/pf/ftp-proxy
PACKAGE= pf
PROG= ftp-proxy
MAN= ftp-proxy.8
SRCS= ftp-proxy.c filter.c
CFLAGS+=-I${SRCTOP}/contrib/pf/libevent
CFLAGS+= -I${SRCTOP}/lib/libpfctl -I${OBJTOP}/lib/libpfctl
LIBADD= event1 pfctl
WARNS?= 3
.include <bsd.prog.mk>