Makefile revision 1.11
1# $NetBSD: Makefile,v 1.11 2001/10/05 01:17:28 jmc Exp $ 2# 3# @(#)Makefile 8.1 (Berkeley) 6/6/93 4 5PROG= more 6MKMAN= no 7 8SRCS= 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 11DPADD= ${LIBTERMCAP} 12LDADD= -ltermcap 13LDSTATIC?=-static 14CPPFLAGS+=-I${.CURDIR} 15.if ${MACHINE_ARCH} != "sparc64" 16DBG= -Os 17.endif 18 19beforeinstall: 20 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \ 21 ${DESTDIR}/usr/share/misc 22 23.include <bsd.prog.mk> 24