xref: /csrg-svn/usr.bin/more/Makefile (revision 62132)
1#	@(#)Makefile	8.1 (Berkeley) 06/06/93
2
3PROG=	more
4CFLAGS+=-I${.CURDIR}
5SRCS=	ch.c command.c decode.c help.c input.c line.c linenum.c main.c \
6	option.c os.c output.c position.c prim.c screen.c signal.c tags.c \
7	ttyin.c
8DPADD=	${LIBTERM} ${LIBCOMPAT}
9LDADD=	-ltermcap -lcompat
10
11beforeinstall:
12	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
13	    ${DESTDIR}/usr/share/misc
14
15.include <bsd.prog.mk>
16