ps ab8e27be23 Detach usr.bin/more and install a link from less. less will behave
like more if invoked as more.  The old more has not been removed.
2000-05-23 08:16:25 +00:00

21 lines
509 B
Makefile

# Makefile for less
#
# $FreeBSD$
PROG= less
SRCS= main.c screen.c brac.c ch.c charset.c cmdbuf.c command.c decode.c \
edit.c filename.c forwback.c help.c ifile.c input.c jump.c line.c \
linenum.c lsystem.c mark.c optfunc.c option.c opttbl.c os.c output.c \
position.c prompt.c search.c signal.c tags.c ttyin.c version.c
DPADD= ${LIBNCURSES}
LDADD= -lncurses
LINKS= ${BINDIR}/less /usr/bin/more
MAN1= less.1
MANDEPEND= less.1
CLEANFILES+= ${MANDEPEND}
.include "Makefile.common"
.include <bsd.prog.mk>