diff options
Diffstat (limited to 'usr.sbin/bgpd/bgpd/Makefile')
-rw-r--r-- | usr.sbin/bgpd/bgpd/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.sbin/bgpd/bgpd/Makefile b/usr.sbin/bgpd/bgpd/Makefile new file mode 100644 index 00000000000..b5feb2097e6 --- /dev/null +++ b/usr.sbin/bgpd/bgpd/Makefile @@ -0,0 +1,18 @@ +# $OpenBSD: Makefile,v 1.1 2004/01/01 23:49:10 henning Exp $ + +.PATH: ${.CURDIR}/.. + +PROG= bgpd +BINDIR= /usr/sbin +SRCS= bgpd.c buffer.c session.c log.c parse.y config.c imsg.c \ + rde.c rde_rib.c rde_decide.c rde_prefix.c mrt.c kroute.c \ + control.c +CFLAGS+= -Wall +CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes +CLFAGS+= -Wmissing-declarations -Wredundant-decls +CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual +CFLAGS+= -Wsign-compare +YFLAGS= +MAN= bgpd.8 bgpd.conf.5 + +.include <bsd.prog.mk> |