summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfctl
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2010-05-26 16:44:32 +0000
committernicm <nicm@openbsd.org>2010-05-26 16:44:32 +0000
commitdfaf6462d312d9724b18729d2e1d3b6dfa593c96 (patch)
tree9d9296816b2fcc8fe2ef9ceb5a61a8eccfe46129 /usr.sbin/ospfctl
parentTrying this again. Mixing anoncvs with cvs is _not_ a good idea. (diff)
downloadwireguard-openbsd-dfaf6462d312d9724b18729d2e1d3b6dfa593c96.tar.xz
wireguard-openbsd-dfaf6462d312d9724b18729d2e1d3b6dfa593c96.zip
Move imsg into libutil and add a man page.
Minor bump for libutil. Previous versions of this diff and man page looked at by various people. "you should just commit" deraadt
Diffstat (limited to 'usr.sbin/ospfctl')
-rw-r--r--usr.sbin/ospfctl/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ospfctl/Makefile b/usr.sbin/ospfctl/Makefile
index e9a09329d94..f713544c012 100644
--- a/usr.sbin/ospfctl/Makefile
+++ b/usr.sbin/ospfctl/Makefile
@@ -1,14 +1,16 @@
-# $OpenBSD: Makefile,v 1.3 2006/08/17 16:43:35 claudio Exp $
+# $OpenBSD: Makefile,v 1.4 2010/05/26 16:44:32 nicm Exp $
.PATH: ${.CURDIR}/../ospfd
PROG= ospfctl
-SRCS= buffer.c imsg.c log.c ospfctl.c parser.c
+SRCS= log.c ospfctl.c parser.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../ospfd
+LDADD= -lutil
+DPADD= ${LIBUTIL}
MAN= ospfctl.8
.include <bsd.prog.mk>