blob: eb7c08675531a333f11e0f764541abe7bddcf3b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.2 2013/07/01 10:15:04 kettenis 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
CPPFLAGS+= -I${.CURDIR}
CPPFLAGS+= -I${.CURDIR}/../../lib/libedit
LDADD= -ledit -lncurses
MAN= bgplgsh.8
BINDIR= /usr/bin
.include <bsd.prog.mk>
|