summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfctl/Makefile
blob: cfd5e4ccb7107460a24dcf0ac664d3b79e0674bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$OpenBSD: Makefile,v 1.5 2016/09/02 14:02:48 benno Exp $

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

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

.include <bsd.prog.mk>