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