diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-02 02:22:53 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-02 02:22:53 +0000 |
commit | 1a0709d60c1c81392407e590230d9a83e47b75d1 (patch) | |
tree | 07b4f1116117687358f63c61c2d2e15e3ff1a7d5 /usr.sbin/bgpctl/Makefile | |
parent | ba95a7866699a59885e609cf169b27bbfb8b58f4 (diff) |
bring back bgpctl
ok and help theo
Diffstat (limited to 'usr.sbin/bgpctl/Makefile')
-rw-r--r-- | usr.sbin/bgpctl/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.sbin/bgpctl/Makefile b/usr.sbin/bgpctl/Makefile new file mode 100644 index 00000000000..8a4e9f014f0 --- /dev/null +++ b/usr.sbin/bgpctl/Makefile @@ -0,0 +1,15 @@ +# $OpenBSD: Makefile,v 1.1 2004/01/02 02:22:52 henning Exp $ + +.PATH: ${.CURDIR}/../bgpd/ + +PROG= bgpctl +SRCS= bgpctl.c buffer.c imsg.c log.c +CFLAGS+= -Wall +CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes +CLFAGS+= -Wmissing-declarations -Wredundant-decls +CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual +CFLAGS+= -Wsign-compare +CFLAGS+= -I${.CURDIR}/../bgpd/ +MAN= bgpctl.8 + +.include <bsd.prog.mk> |