aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 19124c057ff..a5539f2877f 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -114,14 +114,14 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
114 114
115setwins=subdirs=`find $$wd -type d -print`; \ 115setwins=subdirs=`find $$wd -type d -print`; \
116 for file in $$subdirs; do \ 116 for file in $$subdirs; do \
117 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \ 117 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
118 *) wins="$$wins $$file" ;; \ 118 *) wins="$$wins $$file" ;; \
119 esac; \ 119 esac; \
120 done 120 done
121 121
122finder_setwins=subdirs=`find $$wd -type d -print`; \ 122finder_setwins=subdirs=`find $$wd -type d -print`; \
123 for file in $$subdirs; do \ 123 for file in $$subdirs; do \
124 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term | */calc ) ;; \ 124 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \
125 *) wins="$$wins $$file" ;; \ 125 *) wins="$$wins $$file" ;; \
126 esac; \ 126 esac; \
127 done 127 done
@@ -209,6 +209,12 @@ compile-files: subdirs.el doit
209 $(emacs) -f batch-byte-compile $$el || exit 1; \ 209 $(emacs) -f batch-byte-compile $$el || exit 1; \
210 done 210 done
211 211
212compile-calc:
213 for el in $(find $(lisp)/calc -name '*.el'); do \
214 echo Compiling $$el; \
215 $(emacs) -f batch-byte-compile $$el || exit 1; \
216 done
217
212# Backup compiled Lisp files in elc.tar.gz. If that file already 218# Backup compiled Lisp files in elc.tar.gz. If that file already
213# exists, make a backup of it. 219# exists, make a backup of it.
214 220