diff options
Diffstat (limited to 'usr.bin/more/Makefile')
-rw-r--r-- | usr.bin/more/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.bin/more/Makefile b/usr.bin/more/Makefile new file mode 100644 index 0000000..58f9e81 --- /dev/null +++ b/usr.bin/more/Makefile @@ -0,0 +1,15 @@ +# @(#)Makefile 8.1 (Berkeley) 6/6/93 + +PROG= more +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 tags.c \ + ttyin.c +DPADD= ${LIBTERM} ${LIBCOMPAT} +LDADD= -ltermcap -lcompat + +beforeinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \ + ${DESTDIR}/usr/share/misc + +.include <bsd.prog.mk> |