blob: a3aa995f2a5489acdff80ac9e01acd784291e94c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.5 2012/09/12 09:19:54 haesbaert Exp $
.PATH: ${.CURDIR}/../relayd
PROG= relayctl
SRCS= log.c relayctl.c parser.c
MAN= relayctl.8
LDADD= -lutil
DPADD= ${LIBUTIL}
CFLAGS+= -Wall -Werror -I${.CURDIR} -I${.CURDIR}/../relayd
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare -Wbounded
CDIAGFLAGS=
.include <bsd.prog.mk>
|