blob: 989f432c62198ffc2593651b04c953fb5fe84ee8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.1 2017/06/03 10:00:29 florian Exp $
PROG= slaacd
SRCS= control.c engine.c frontend.c log.c slaacd.c
MAN= slaacd.8
#DEBUG= -g -DDEBUG=3 -O0
CFLAGS+= -DSKIP_PROPOSAL
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
YFLAGS=
LDADD+= -levent -lutil
DPADD+= ${LIBEVENT} ${LIBUTIL}
.include <bsd.prog.mk>
|