blob: 261abf70b56f7c965a742ddf960b90382d86d7a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.1 2006/10/18 16:11:58 norby 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
.include <bsd.prog.mk>
|