summaryrefslogtreecommitdiff
path: root/usr.sbin/eigrpd/Makefile
blob: 9768067adae94ec4f75922b0356ba2076e0c413d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$OpenBSD: Makefile,v 1.1 2015/10/02 04:26:47 renato Exp $

PROG=	eigrpd
SRCS=	control.c eigrpd.c eigrpe.c hello.c in_cksum.c interface.c \
	kroute.c log.c neighbor.c packet.c parse.y printconf.c query.c \
	rde.c rde_dual.c reply.c rtp.c tlv.c update.c util.c

MAN=	eigrpd.8 eigrpd.conf.5

CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
YFLAGS=
LDADD+=	-levent -lutil
DPADD+= ${LIBEVENT} ${LIBUTIL}

.include <bsd.prog.mk>