summaryrefslogtreecommitdiff
path: root/usr.sbin/ripd/Makefile
blob: b6dfc592e0ef2caf081d538ea88f8c6f2f04e51b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$OpenBSD: Makefile,v 1.5 2010/05/26 16:44:32 nicm Exp $

PROG=	ripd
SRCS=	auth.c carp.c control.c interface.c kroute.c \
	log.c message.c name2id.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 -lutil
DPADD+= ${LIBEVENT} ${LIBUTIL}

.include <bsd.prog.mk>