blob: 7922e4808b4674dac16b4c80c6147db7399f744b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.8 2015/11/21 12:37:42 reyk Exp $
.PATH: ${.CURDIR}/../relayd
PROG= relayctl
SRCS= log.c util.c relayctl.c parser.c
MAN= relayctl.8
LDADD= -lutil
DPADD= ${LIBUTIL}
CFLAGS+= -Wall -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>
|