blob: 1f8c96a5c62d40fec62607e3de88ff383dd57a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
|