diff options
| author | Romain Francoise | 2005-11-01 11:49:07 +0000 |
|---|---|---|
| committer | Romain Francoise | 2005-11-01 11:49:07 +0000 |
| commit | 7a7f042f7d01003acecf9c70e9275f2493471bad (patch) | |
| tree | de633139f1e724a3a79f1c12d9450eb976d2dd91 | |
| parent | 4ac4f9ce5eecb325b3641f68def3be16caabc7b9 (diff) | |
| download | emacs-7a7f042f7d01003acecf9c70e9275f2493471bad.tar.gz emacs-7a7f042f7d01003acecf9c70e9275f2493471bad.zip | |
* Makefile.in (install): Compress source files.
| -rw-r--r-- | leim/ChangeLog | 4 | ||||
| -rw-r--r-- | leim/Makefile.in | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index a336b65bf2b..154e30bcc50 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-11-01 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * Makefile.in (install): Compress source files. | ||
| 4 | |||
| 1 | 2005-10-28 Juri Linkov <juri@jurta.org> | 5 | 2005-10-28 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * quail/symbol-ksc.el: Add missing characters from 1st pos of | 7 | * quail/symbol-ksc.el: Add missing characters from 1st pos of |
diff --git a/leim/Makefile.in b/leim/Makefile.in index 7d550fa7598..4eab7378760 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in | |||
| @@ -37,6 +37,8 @@ srcdir=@srcdir@ | |||
| 37 | # Where to install LEIM files. | 37 | # Where to install LEIM files. |
| 38 | INSTALLDIR=${datadir}/emacs/${version}/leim | 38 | INSTALLDIR=${datadir}/emacs/${version}/leim |
| 39 | 39 | ||
| 40 | GZIP = @GZIP@ | ||
| 41 | |||
| 40 | # On Xenix and the IBM RS6000, double-dot gets screwed up. | 42 | # On Xenix and the IBM RS6000, double-dot gets screwed up. |
| 41 | dot = . | 43 | dot = . |
| 42 | 44 | ||
| @@ -238,6 +240,14 @@ install: all | |||
| 238 | rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \ | 240 | rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \ |
| 239 | rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \ | 241 | rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \ |
| 240 | else true; fi | 242 | else true; fi |
| 243 | -unset CDPATH; \ | ||
| 244 | if [ -n "${GZIP}" ]; \ | ||
| 245 | then \ | ||
| 246 | echo "Compressing *.el ..." ; \ | ||
| 247 | (cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \ | ||
| 248 | ${GZIP} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \ | ||
| 249 | done) \ | ||
| 250 | else true; fi | ||
| 241 | -chmod -R a+r ${INSTALLDIR} | 251 | -chmod -R a+r ${INSTALLDIR} |
| 242 | 252 | ||
| 243 | clean mostlyclean: | 253 | clean mostlyclean: |