diff options
Diffstat (limited to 'usr.bin/bgplg/bgplgsh')
-rw-r--r-- | usr.bin/bgplg/bgplgsh/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.bin/bgplg/bgplgsh/Makefile b/usr.bin/bgplg/bgplgsh/Makefile new file mode 100644 index 00000000000..1f8c96a5c62 --- /dev/null +++ b/usr.bin/bgplg/bgplgsh/Makefile @@ -0,0 +1,18 @@ +# $OpenBSD: Makefile,v 1.1 2006/12/11 23:10:11 reyk Exp $ + +.PATH: ${.CURDIR}/.. + +PROG= bgplgsh +SRCS= bgplgsh.c misc.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} +LDADD= -ledit -lncurses +MAN= bgplgsh.8 + +BINDIR= /usr/bin + +.include <bsd.prog.mk> |