Home | History | Annotate | Line # | Download | only in more
Makefile revision 1.13
      1 #	$NetBSD: Makefile,v 1.13 2002/02/09 13:49:28 lukem Exp $
      2 #
      3 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      4 
      5 PROG=		more
      6 NOMAN=		# defined
      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 
     12 CPPFLAGS+=	-I${.CURDIR}
     13 DPADD=		${LIBTERMCAP}
     14 LDADD=		-ltermcap
     15 
     16 beforeinstall:
     17 	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \
     18 		${.CURDIR}/more.help ${DESTDIR}/usr/share/misc
     19 
     20 .include <bsd.prog.mk>
     21