diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-02-07 03:55:22 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-02-07 03:55:22 +0000 |
commit | 2db58e929d7f218eeb52f7366c89bbc957808d83 (patch) | |
tree | 637cb7905ae6905cd4692d0e798797053609bf5b /sysutils/less | |
parent | 2e23ead7f5fbdddc3b6f2147c6c602dac22257bc (diff) | |
download | ports-2db58e929d7f218eeb52f7366c89bbc957808d83.tar.gz ports-2db58e929d7f218eeb52f7366c89bbc957808d83.zip |
Notes
Diffstat (limited to 'sysutils/less')
-rw-r--r-- | sysutils/less/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/sysutils/less/Makefile b/sysutils/less/Makefile index 96e3b860133b..fde6597a3195 100644 --- a/sysutils/less/Makefile +++ b/sysutils/less/Makefile @@ -3,11 +3,28 @@ # Date created: 8 Nov 1994 # Whom: ache # -# $Id: Makefile,v 1.2 1994/11/21 23:34:36 ache Exp $ +# $Id: Makefile,v 1.3 1994/12/28 06:22:33 ache Exp $ # DISTNAME= less-252 MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ ftp://ftp.uu.net/systems/gnu/ GNU_CONFIGURE= YES +EXTRA_PATCH= patch-ab + +color: + @echo "Okay, making a color version of less...." + @cp ${FILESDIR}/${EXTRA_PATCH} ${PATCHDIR} + @${MAKE} ${.MAKEFLAGS} all + +pre-clean: + @rm -f ${PATCHDIR}/${EXTRA_PATCH} + +pre-patch: + @if [ ! -f ${PATCHDIR}/${EXTRA_PATCH} ]; then \ + echo '******************************************************' ; \ + echo '* Note that you can build a color version of less by *' ; \ + echo '* typing "make color" following a "make clean" *' ; \ + echo '******************************************************' ; \ + fi .include <bsd.port.mk> |