21 lines
470 B
Makefile
21 lines
470 B
Makefile
# $NetBSD: Makefile,v 1.5 1998/02/04 11:08:37 christos Exp $
|
|
#
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
WARNS?=1
|
|
PROG= more
|
|
NOMAN=1
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
SRCS= ch.c command.c decode.c help.c input.c line.c linenum.c main.c \
|
|
option.c os.c output.c position.c prim.c screen.c signal.c \
|
|
ttyin.c
|
|
DPADD= ${LIBTERMCAP}
|
|
LDADD= -ltermcap
|
|
|
|
beforeinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
|
|
${DESTDIR}/usr/share/misc
|
|
|
|
.include <bsd.prog.mk>
|