summaryrefslogtreecommitdiffstats
path: root/usr.sbin/slaacctl/Makefile
blob: 9bc1d6dc90ccb332d948e74eeacb5aecea586b0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.2 2017/06/03 10:00:29 florian Exp $

PROG=	slaacctl
SRCS=	slaacctl.c parser.c

MAN=	slaacctl.8

CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sbin/slaacd
LDADD=	-lutil
DPADD=	${LIBUTIL}

.include <bsd.prog.mk>