mirror of
https://git.freebsd.org/src.git
synced 2026-01-12 06:54:03 +00:00
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
13 lines
224 B
Makefile
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>
|