summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospf6d/Makefile
diff options
context:
space:
mode:
authornorby <norby@openbsd.org>2007-10-08 10:44:50 +0000
committernorby <norby@openbsd.org>2007-10-08 10:44:50 +0000
commita1a4e97b0cce230734864cbdea30a16973fa6d4f (patch)
tree5fd8c56d912b65acf54e6e27ba7b7c3f5d5ab9bc /usr.sbin/ospf6d/Makefile
parentregen (diff)
downloadwireguard-openbsd-a1a4e97b0cce230734864cbdea30a16973fa6d4f.tar.xz
wireguard-openbsd-a1a4e97b0cce230734864cbdea30a16973fa6d4f.zip
Welcome ospf6d
The new ospf6d daemon will support OSPFv3, basically OSPF for IPv6 networks. It is heavily based on ospfd(8), it is more or less a copy and paste of it. Currently some unneeded stuff has been removed and the trasition from IPv4 to IPv6 has begun. ospf6d is not very usefull at the moment, it is being imported to allow more people to work on it concurrently. Not yet connected to the builds. ok claudio@ dlg@
Diffstat (limited to 'usr.sbin/ospf6d/Makefile')
-rw-r--r--usr.sbin/ospf6d/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.sbin/ospf6d/Makefile b/usr.sbin/ospf6d/Makefile
new file mode 100644
index 00000000000..64f3c9968aa
--- /dev/null
+++ b/usr.sbin/ospf6d/Makefile
@@ -0,0 +1,21 @@
+# $OpenBSD: Makefile,v 1.1 2007/10/08 10:44:50 norby Exp $
+
+
+PROG= ospf6d
+SRCS= area.c buffer.c carp.c control.c database.c hello.c \
+ imsg.c in_cksum.c interface.c iso_cksum.c kroute.c lsack.c \
+ lsreq.c lsupdate.c log.c neighbor.c ospf6d.c ospfe.c packet.c \
+ parse.y printconf.c rde.c rde_lsdb.c rde_spf.c name2id.c
+
+MAN= ospf6d.8 ospf6d.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>