diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-26 16:44:34 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-26 16:44:34 +0000 |
commit | 8a9f9cc67e1e3472ccceed3d2505c63b277bdd68 (patch) | |
tree | c6046cf42d49b7baf27899e7f5784c755a55f6ec /usr.sbin/ospfctl | |
parent | 0f31cd36b18a4e846125940b5fbdb71a8d33b5aa (diff) |
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/Makefile | 6 |
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> |