summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ripctl/Makefile
blob: 97adb14a4636fc49d32dcf28ffdcfa272f86d66f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.3 2016/09/02 14:07:52 benno Exp $

.PATH:		${.CURDIR}/../ripd

PROG=	ripctl
SRCS=	logmsg.c ripctl.c parser.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../ripd
LDADD=	-lutil
DPADD=	${LIBUTIL}
MAN=	ripctl.8

.include <bsd.prog.mk>