mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
f0be0a1f8c
Major changes from v429: * Don't pass "-" to non-pipe LESSOPEN unless it starts with "-". * Allow a fraction as the argument to the -# (--shift) option. * Fix highlight bug when underlined/overstruck text matches at end of line. * Fix non-regex searches with ctrl-R. Approved by: re (kensmith, kib)
20 lines
590 B
Makefile
20 lines
590 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= less
|
|
SRCS= main.c screen.c brac.c ch.c charset.c cmdbuf.c command.c cvt.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 pattern.c position.c prompt.c search.c \
|
|
signal.c tags.c ttyin.c version.c
|
|
SCRIPTS=lesspipe.sh zless.sh
|
|
SCRIPTSNAME_lesspipe.sh=lesspipe.sh
|
|
DPADD= ${LIBTERMCAP}
|
|
LDADD= -ltermcap
|
|
LINKS= ${BINDIR}/less ${BINDIR}/more \
|
|
${BINDIR}/zless ${BINDIR}/bzless
|
|
MLINKS= less.1 more.1
|
|
CLEANFILES= less.1
|
|
|
|
.include "Makefile.common"
|
|
.include <bsd.prog.mk>
|