diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2006-10-18 16:11:59 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2006-10-18 16:11:59 +0000 |
commit | 9898323e8078c0a28e2404083e37bbb23637a390 (patch) | |
tree | 2fd1fe72c94b0d594d939719e44a82ce86dd6e10 /usr.sbin/ripd/Makefile | |
parent | 489a63b5b7e02bf58b50268110b2421d48373394 (diff) |
Welcome ripd
started by Michele Marchetto some time ago by using the imsg/three process framework
of ospfd. He implemented most of the daemon with a little help and guidance from
Claudio and I.
Currently the daemon is more or less complete, with the exception of key lifetime
and rollover.
Not yet connected to the builds.
OK claudio@
Diffstat (limited to 'usr.sbin/ripd/Makefile')
-rw-r--r-- | usr.sbin/ripd/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.sbin/ripd/Makefile b/usr.sbin/ripd/Makefile new file mode 100644 index 00000000000..261abf70b56 --- /dev/null +++ b/usr.sbin/ripd/Makefile @@ -0,0 +1,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> |