freebsd-dev/usr.sbin/authpf/Makefile
Kristof Provost 2b2ed4a697 authpf: Start using libpfctl
Use pfctl_kill_states() rather than the DIOCKILLSTATES ioctl directly.

MFC after:	1 week
Sponsored by:	Rubicon Communications, LLC ("Netgate")
Differential Revision:	https://reviews.freebsd.org/D30057
2021-05-07 22:13:31 +02:00

25 lines
366 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/contrib/pf/authpf
PROG= authpf
MAN= authpf.8
BINOWN= root
BINGRP= authpf
BINMODE= 6555
SRCS= authpf.c
# XXX ALTQ:
CFLAGS+= -DENABLE_ALTQ
CFLAGS+= -I${SRCTOP}/lib/libpfctl -I${OBJTOP}/lib/libpfctl
LIBADD= m util pfctl
WARNS?= 3
LINKS= ${BINDIR}/authpf ${BINDIR}/authpf-noip
MLINKS= authpf.8 authpf-noip.8
.include <bsd.prog.mk>