blob: f2260e3e9208eee425063315b2bd6932c4eba752 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.2 2007/01/09 00:45:32 deraadt Exp $
.PATH: ${.CURDIR}/../hoststated
PROG= hoststatectl
SRCS= buffer.c imsg.c log.c hoststatectl.c parser.c
MAN= hoststatectl.8
CFLAGS+= -Wall -Werror -I${.CURDIR} -I${.CURDIR}/../hoststated
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare -Wbounded
.include <bsd.prog.mk>
|