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/ospf6ctl/Makefile | |
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/ospf6ctl/Makefile')
-rw-r--r-- | usr.sbin/ospf6ctl/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ospf6ctl/Makefile b/usr.sbin/ospf6ctl/Makefile index 26d128b7e49..bcf7c48a2bb 100644 --- a/usr.sbin/ospf6ctl/Makefile +++ b/usr.sbin/ospf6ctl/Makefile @@ -1,14 +1,16 @@ -# $OpenBSD: Makefile,v 1.1 2007/10/12 08:22:53 norby Exp $ +# $OpenBSD: Makefile,v 1.2 2010/05/26 16:44:32 nicm Exp $ .PATH: ${.CURDIR}/../ospf6d PROG= ospf6ctl -SRCS= buffer.c imsg.c log.c ospf6ctl.c parser.c +SRCS= log.c ospf6ctl.c parser.c CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../ospf6d +LDADD= -lutil +DPADD= ${LIBUTIL} MAN= ospf6ctl.8 .include <bsd.prog.mk> |