mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
95be9288f0
Reviewed by: glebius MFC after: 4 weeks Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D29641
18 lines
270 B
Makefile
18 lines
270 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/contrib/pf/ftp-proxy
|
|
|
|
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>
|