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