xref: /dragonfly/usr.sbin/authpf/Makefile (revision 650094e1)
1#	$OpenBSD: Makefile,v 1.10 2003/11/20 23:23:09 avsm Exp $
2# $DragonFly: src/usr.sbin/authpf/Makefile,v 1.2 2005/02/12 03:06:23 joerg Exp $
3
4PROG=	authpf
5MAN=	authpf.8
6BINOWN=	root
7BINGRP=	authpf
8BINMODE=	6555
9SRCS=	authpf.c
10
11.PATH:	${.CURDIR}/../pfctl
12CFLAGS+=	-I${.CURDIR}/../pfctl
13
14LDADD+= -lm -lmd -lutil
15DPADD+= ${LIBM}
16
17CLEANFILES+=	y.tab.h
18
19.include <bsd.prog.mk>
20