diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
commit | b8f8618362b39a01e2225feef7d298fb22cafe2f (patch) | |
tree | 67a28a0746219c11b5e630daec412185165d3ed9 /textproc/ispell/Makefile | |
parent | 3927b01845af9489e456e36e73d2511621daea90 (diff) | |
download | ports-b8f8618362b39a01e2225feef7d298fb22cafe2f.tar.gz ports-b8f8618362b39a01e2225feef7d298fb22cafe2f.zip |
Notes
Diffstat (limited to 'textproc/ispell/Makefile')
-rw-r--r-- | textproc/ispell/Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/textproc/ispell/Makefile b/textproc/ispell/Makefile index aa7691902c9d..481fe6c44e06 100644 --- a/textproc/ispell/Makefile +++ b/textproc/ispell/Makefile @@ -4,7 +4,7 @@ # Date created: 6 November 1994 # Whom: jmz # -# $Id: Makefile,v 1.28 1999/07/04 18:21:51 obrien Exp $ +# $Id: Makefile,v 1.29 1999/08/13 00:13:14 jmz Exp $ # DISTNAME= ispell-3.1 @@ -27,10 +27,10 @@ MLINKS= ispell.1 buildhash.1 ispell.1 findaffix.1 ispell.1 munchlist.1\ .if !defined(ISPELL_FR) .if (make(patch) || make(configure) || make(build) || make (install)) .BEGIN: - @echo '*********************************************************' - @echo '* Note that you can build a french or british version *' - @echo '* by typing "make french" or "make british" *' - @echo '*********************************************************' + @${ECHO_MSG} '*********************************************************' + @${ECHO_MSG} '* Note that you can build a french or british version *' + @${ECHO_MSG} '* by typing "make french" or "make british" *' + @${ECHO_MSG} '*********************************************************' .endif .else EXTRA_DICT= francais-IREQ-1.4.tar.gz @@ -40,28 +40,28 @@ DISTFILES+= ${EXTRA_DICT} pre-extract: .if !defined(LANG) - @echo '******************************************************' - @echo '* Note that you can build a british version by *' - @echo '* typing "make british" following a "make clean" *' - @echo '******************************************************' + @${ECHO_MSG} '******************************************************' + @${ECHO_MSG} '* Note that you can build a british version by *' + @${ECHO_MSG} '* typing "make british" following a "make clean" *' + @${ECHO_MSG} '******************************************************' .endif pre-configure: .if defined(EXTRA_DICT) - @echo ${EXTRA_DICT} > ${WRKDIR}/extra_dict + @${ECHO} ${EXTRA_DICT} > ${WRKDIR}/extra_dict .else - @echo -n + @${ECHO} -n .endif post-configure: - @echo "#define CFLAGS \"${CFLAGS}\"" >> ${WRKSRC}/local.h + @${ECHO} "#define CFLAGS \"${CFLAGS}\"" >> ${WRKSRC}/local.h british: - @echo "Okay, making a british version of ispell...." + @${ECHO_MSG} "Okay, making a british version of ispell...." @${MAKE} ${.MAKEFLAGS} LANG=british all french: - @echo "Okay, making a french/english version of ispell...." + @${ECHO_MSG} "Okay, making a french/english version of ispell...." @${MAKE} ${.MAKEFLAGS} ISPELL_FR=yes pre-install: |