Changeset 3988 for vendor/emacs-CVS_HEAD/Makefile.in
- Timestamp:
- 2005年11月26日 08時33分26秒 (3 years ago)
- Files:
-
- vendor/emacs-CVS_HEAD/Makefile.in (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-CVS_HEAD/Makefile.in
r3892 r3988 223 223 # By default, we uphold the dignity of our programs. 224 224 INSTALL_STRIP = 225 226 # We use gzip to compress installed .el files. 227 GZIP_PROG = @GZIP_PROG@ 225 228 226 229 # ============================= Targets ============================== … … 476 479 else true; fi 477 480 -unset CDPATH; \ 481 if [ -n "${GZIP_PROG}" ]; \ 482 then \ 483 echo "Compressing *.el ..." ; \ 484 (cd ${lispdir}; for f in `find . -name "*.elc" -print`; do \ 485 ${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \ 486 done) \ 487 else true; fi 488 -unset CDPATH; \ 478 489 thisdir=`/bin/pwd`; \ 479 490 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ … … 751 762 fi 752 763 753 bootstrap: bootstrap-clean-before info bootstrap-build FRC 754 755 bootfast: bootstrap-clean-before-fast info bootstrap-build FRC 764 bootstrap: bootstrap-clean-before FRC 765 $(MAKE) $(MFLAGS) info bootstrap-build 766 767 bootfast: bootstrap-clean-before-fast FRC 768 $(MAKE) $(MFLAGS) info bootstrap-build 756 769 757 770 bootstrap-build: FRC
