mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-03 11:33:37 +00:00
* Makefile.in (install): Compress source files.
This commit is contained in:
parent
4ac4f9ce5e
commit
7a7f042f7d
@ -1,3 +1,7 @@
|
|||||||
|
2005-11-01 Romain Francoise <romain@orebokech.com>
|
||||||
|
|
||||||
|
* Makefile.in (install): Compress source files.
|
||||||
|
|
||||||
2005-10-28 Juri Linkov <juri@jurta.org>
|
2005-10-28 Juri Linkov <juri@jurta.org>
|
||||||
|
|
||||||
* quail/symbol-ksc.el: Add missing characters from 1st pos of
|
* quail/symbol-ksc.el: Add missing characters from 1st pos of
|
||||||
|
@ -37,6 +37,8 @@ srcdir=@srcdir@
|
|||||||
# Where to install LEIM files.
|
# Where to install LEIM files.
|
||||||
INSTALLDIR=${datadir}/emacs/${version}/leim
|
INSTALLDIR=${datadir}/emacs/${version}/leim
|
||||||
|
|
||||||
|
GZIP = @GZIP@
|
||||||
|
|
||||||
# On Xenix and the IBM RS6000, double-dot gets screwed up.
|
# On Xenix and the IBM RS6000, double-dot gets screwed up.
|
||||||
dot = .
|
dot = .
|
||||||
|
|
||||||
@ -238,6 +240,14 @@ install: all
|
|||||||
rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \
|
rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \
|
||||||
rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \
|
rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \
|
||||||
else true; fi
|
else true; fi
|
||||||
|
-unset CDPATH; \
|
||||||
|
if [ -n "${GZIP}" ]; \
|
||||||
|
then \
|
||||||
|
echo "Compressing *.el ..." ; \
|
||||||
|
(cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \
|
||||||
|
${GZIP} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
|
||||||
|
done) \
|
||||||
|
else true; fi
|
||||||
-chmod -R a+r ${INSTALLDIR}
|
-chmod -R a+r ${INSTALLDIR}
|
||||||
|
|
||||||
clean mostlyclean:
|
clean mostlyclean:
|
||||||
|
Loading…
Reference in New Issue
Block a user