diff options
Diffstat (limited to 'usr.bin/more/Makefile')
| -rw-r--r-- | usr.bin/more/Makefile | 13 |
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> |
