blob: 4d1117ca22c48952a7b53a27bcaf20e6bcab3666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.4 2003/05/28 19:14:19 millert Exp $
PROG= more
MAN=
CFLAGS+=-D_USE_OLD_CURSES_ -I.
DPADD= ${LIBOCURSES}
LDADD= -locurses
CLEANFILES+=morehelp.h
beforedepend: morehelp.h
morehelp.h: ${.CURDIR}/more.help
sed 's/\(^.*$$\)/\"\1\",/' ${.CURDIR}/more.help > morehelp.h
more.o: morehelp.h
.include <bsd.prog.mk>
|