diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2015-10-02 04:31:53 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2015-10-02 04:31:53 +0000 |
commit | 5d058ac5fea652d7bdb9d58965b0da6343c641b9 (patch) | |
tree | a54412e4324fffa9030c3e7f855dda8422323c9d /usr.sbin/eigrpctl/Makefile | |
parent | 740e0fc69b48875ce978e247343b994a92d6eb83 (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/Makefile | 16 |
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> |