Makefile revision 1.7
1#	$NetBSD: Makefile,v 1.7 1999/02/13 02:54:18 lukem Exp $
2#
3#	@(#)Makefile	8.1 (Berkeley) 6/6/93
4
5PROG=	more
6MKMAN=	no
7
8CPPFLAGS+=-I${.CURDIR}
9SRCS=	ch.c command.c decode.c help.c input.c line.c linenum.c main.c \
10	option.c os.c output.c position.c prim.c screen.c signal.c \
11	ttyin.c
12DPADD=	${LIBTERMCAP}
13LDADD=	-ltermcap
14
15beforeinstall:
16	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
17	    ${DESTDIR}/usr/share/misc
18
19.include <bsd.prog.mk>
20