1 # $NetBSD: Makefile,v 1.15 2010/02/03 15:34:38 roy Exp $ 2 # 3 # @(#)Makefile 8.1 (Berkeley) 6/6/93 4 5 WARNS?= 1 6 PROG= more 7 NOMAN= # defined 8 9 SRCS= 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 12 13 CPPFLAGS+= -I${.CURDIR} 14 DPADD= ${LIBTERMLIB} 15 LDADD= -ltermlib 16 17 beforeinstall: 18 ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \ 19 ${.CURDIR}/more.help ${DESTDIR}/usr/share/misc 20 21 .include <bsd.prog.mk> 22