blob: d77bb3c6fa93e6ffdf72b46145640c674240d0f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.6 2014/01/18 05:54:51 martynas 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
CDIAGFLAGS=
.include <bsd.prog.mk>
|