diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 07:36:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 07:36:50 +0000 |
commit | e58cbdeb43a8203b2472a29ca98404ed89c6526e (patch) | |
tree | d57b6b7e2ffdec3f8b040a7f0fe18e22d112f90a /distrib/special/less | |
parent | cb4906f55fa7a49aa28397caa1074aa262893119 (diff) |
Use a Makefile.inc to share all the -Os and such options we use
Diffstat (limited to 'distrib/special/less')
-rw-r--r-- | distrib/special/less/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/distrib/special/less/Makefile b/distrib/special/less/Makefile index eb9eed1e9a3..c142920bcee 100644 --- a/distrib/special/less/Makefile +++ b/distrib/special/less/Makefile @@ -1,12 +1,11 @@ -# $OpenBSD: Makefile,v 1.1 2003/04/14 14:35:04 millert Exp $ +# $OpenBSD: Makefile,v 1.2 2009/10/28 07:36:49 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 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 -CFLAGS= -Os ${PIPE} ${DEBUG} -I${.CURDIR} -MAN= +CFLAGS= ${PIPE} ${DEBUG} -I${.CURDIR} DPADD= ${LIBOCURSES} LDADD= -locurses |