summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpctl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bgpctl/Makefile')
-rw-r--r--usr.sbin/bgpctl/Makefile15
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>