Makefile revision 1.12
1# $NetBSD: Makefile,v 1.12 2001/12/12 00:05:10 tv Exp $ 2# 3# @(#)Makefile 8.1 (Berkeley) 6/6/93 4 5PROG= more 6NOMAN= # defined 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 11 12CPPFLAGS+= -I${.CURDIR} 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