blob: 487819d2e45fbaa07bbcab2ca2a4622c6817d755 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.1 2017/04/10 13:35:42 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}/../slaacd
LDADD= -lutil
DPADD= ${LIBUTIL}
.include <bsd.prog.mk>
|