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/ripctl/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/ripctl/Makefile')
-rw-r--r-- | usr.sbin/ripctl/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ripctl/Makefile b/usr.sbin/ripctl/Makefile index 30d20253947..90c36ef8c82 100644 --- a/usr.sbin/ripctl/Makefile +++ b/usr.sbin/ripctl/Makefile @@ -1,15 +1,17 @@ -# $OpenBSD: Makefile,v 1.1 2006/10/18 16:15:25 norby Exp $ +# $OpenBSD: Makefile,v 1.2 2010/05/26 16:44:32 nicm Exp $ .PATH: ${.CURDIR}/../ripd PROG= ripctl -SRCS= buffer.c imsg.c log.c ripctl.c parser.c +SRCS= log.c ripctl.c parser.c CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../ripd +LDADD= -lutil +DPADD= ${LIBUTIL} MAN= ripctl.8 .include <bsd.prog.mk> |