1 # $NetBSD: Makefile,v 1.10 2001/08/20 12:19:44 martin Exp $ 2 # 3 # @(#)Makefile 8.1 (Berkeley) 6/6/93 4 5 PROG= more 6 MKMAN= no 7 8 SRCS= ch.c command.c decode.c help.c input.c line.c linenum.c main.c \ 9 option.c os.c output.c position.c prim.c screen.c signal.c \ 10 ttyin.c 11 DPADD= ${LIBTERMCAP} 12 LDADD= -ltermcap 13 LDSTATIC?=-static 14 CPPFLAGS+=-I${.CURDIR} 15 .if ${MACHINE_ARCH} != "sparc64" 16 COPTS+= -Os 17 .endif 18 19 beforeinstall: 20 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \ 21 ${DESTDIR}/usr/share/misc 22 23 .include <bsd.prog.mk> 24