blob: 232940025294f758f4703697e8954b5a18f39525 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.3 2010/07/02 21:51:06 deraadt Exp $
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 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
CFLAGS= ${PIPE} ${DEBUG} -I${.CURDIR} -DSMALL_PROGRAM
DPADD= ${LIBOCURSES}
LDADD= -locurses
.PATH: ${.CURDIR}/../../../usr.bin/less
.include <bsd.prog.mk>
|