summaryrefslogtreecommitdiff
path: root/usr.sbin/ripd/Makefile
blob: 1210b600dc714647f531da4119d95b76ff441232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$OpenBSD: Makefile,v 1.2 2006/11/26 11:31:13 deraadt Exp $

PROG=	ripd
SRCS=	auth.c buffer.c control.c imsg.c interface.c kroute.c \
	log.c message.c neighbor.c packet.c parse.y printconf.c \
	rde.c rde_rib.c ripe.c ripd.c

MAN=	ripd.8 ripd.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
DPADD+= ${LIBEVENT}

.include <bsd.prog.mk>