summaryrefslogtreecommitdiff
path: root/usr.bin/more/Makefile
diff options
context:
space:
mode:
authoralm <alm@NetBSD.org>1993-11-09 02:59:05 +0000
committeralm <alm@NetBSD.org>1993-11-09 02:59:05 +0000
commitbc24dd374ef57efe376c69964cfa33b01acba79c (patch)
tree599289cc4705d9662a43ef5100f2894a657a87b0 /usr.bin/more/Makefile
parent0605e44a71c12601b7030696342827a4c71a904a (diff)
Add 4.4BSD more(1) from UUNET. Patched to support regex(3)
and implement historical more commands.
Diffstat (limited to 'usr.bin/more/Makefile')
-rw-r--r--usr.bin/more/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/usr.bin/more/Makefile b/usr.bin/more/Makefile
index 725e665802c..e61848714e4 100644
--- a/usr.bin/more/Makefile
+++ b/usr.bin/more/Makefile
@@ -1,14 +1,17 @@
-# from: @(#)Makefile 5.11 (Berkeley) 6/25/90
-# $Id: Makefile,v 1.2 1993/07/31 15:18:48 mycroft Exp $
+# @(#)Makefile 5.6 (Berkeley) 3/12/91
PROG= more
-DPADD= ${LIBTERM}
-LDADD= -ltermcap
+CFLAGS+=-I${.CURDIR} -DREGEX
+SRCS= ch.c command.c decode.c filename.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 tags.c ttyin.c
+LDADD+= -ltermcap -lgnuregex
+DPADD+= ${LIBTERM} /usr/lib/libgnuregex.a
MLINKS= more.1 page.1
LINKS= ${BINDIR}/more ${BINDIR}/page
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
- ${DESTDIR}/usr/share/misc/omore.help
+ ${DESTDIR}/usr/share/misc
.include <bsd.prog.mk>