1# $OpenBSD: Makefile,v 1.1 2006/12/11 23:10:11 reyk Exp $ 2 3.PATH: ${.CURDIR}/.. 4 5PROG= bgplgsh 6SRCS= bgplgsh.c misc.c 7CFLAGS+= -Wall 8CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes 9CLFAGS+= -Wmissing-declarations -Wredundant-decls 10CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual 11CFLAGS+= -Wsign-compare 12CFLAGS+= -I${.CURDIR} 13LDADD= -ledit -lncurses 14MAN= bgplgsh.8 15 16BINDIR= /usr/bin 17 18.include <bsd.prog.mk> 19