xref: /openbsd/sbin/slaacd/Makefile (revision 46ebbf29)
1#	$OpenBSD: Makefile,v 1.3 2022/08/29 17:00:30 deraadt Exp $
2
3PROG=	slaacd
4SRCS=	control.c engine.c frontend.c log.c slaacd.c
5
6MAN=	slaacd.8
7
8#DEBUG=	-g -DDEBUG=3 -O0
9
10CFLAGS+= -Wall -I${.CURDIR}
11CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
12CFLAGS+= -Wmissing-declarations
13CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
14CFLAGS+= -Wsign-compare
15YFLAGS=
16LDADD+=	-levent -lutil
17DPADD+= ${LIBEVENT} ${LIBUTIL}
18
19.include <bsd.prog.mk>
20
21# Don't compile slaacd as static binary by default
22LDSTATIC=
23