summaryrefslogtreecommitdiffstats
path: root/usr.sbin/eigrpctl/Makefile
blob: 60b1a7dd9666f2d39f41edb28486fb0b8751f3b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$OpenBSD: Makefile,v 1.1 2015/10/02 04:31:52 renato Exp $

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

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

.include <bsd.prog.mk>