freebsd-src/libexec/tftp-proxy/Makefile
Lexi Winter b7ddf9fe99 tftp-proxy: move to the pf package
tftp-proxy is part of pf and isn't useful without it, so move it to the
pf package (where its friend ftp-proxy already lives).

Reviewed by:	manu, kp, des, emaste
Approved by:	des (mentor)
Differential Revision:	https://reviews.freebsd.org/D50145
2025-05-05 16:39:25 +01:00

13 lines
224 B
Makefile

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