summaryrefslogtreecommitdiff
path: root/usr.sbin/eigrpctl/Makefile
diff options
context:
space:
mode:
authorRenato Westphal <renato@cvs.openbsd.org>2015-10-02 04:31:53 +0000
committerRenato Westphal <renato@cvs.openbsd.org>2015-10-02 04:31:53 +0000
commit5d058ac5fea652d7bdb9d58965b0da6343c641b9 (patch)
treea54412e4324fffa9030c3e7f855dda8422323c9d /usr.sbin/eigrpctl/Makefile
parent740e0fc69b48875ce978e247343b994a92d6eb83 (diff)
Controller for the recently imported eigrpd(8) daemon.
Not yet connected to the builds. ok deraadt@ claudio@
Diffstat (limited to 'usr.sbin/eigrpctl/Makefile')
-rw-r--r--usr.sbin/eigrpctl/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/usr.sbin/eigrpctl/Makefile b/usr.sbin/eigrpctl/Makefile
new file mode 100644
index 00000000000..60b1a7dd966
--- /dev/null
+++ b/usr.sbin/eigrpctl/Makefile
@@ -0,0 +1,16 @@
+# $OpenBSD: Makefile,v 1.1 2015/10/02 04:31:52 renato Exp $
+
+.PATH: ${.CURDIR}/../eigrpd
+
+PROG= eigrpctl
+SRCS= util.c log.c eigrpctl.c parser.c
+CFLAGS+= -Wall
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
+CFLAGS+= -Wsign-compare
+CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../eigrpd
+LDADD= -lutil
+DPADD= ${LIBUTIL}
+MAN= eigrpctl.8
+
+.include <bsd.prog.mk>