(finder_setwins, setwins): Include Calc again.

This commit is contained in:
Colin Walters 2001-11-23 17:27:28 +00:00
parent deece6f51a
commit dcf91c25dc

View file

@ -114,14 +114,14 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
setwins=subdirs=`find $$wd -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
*) wins="$$wins $$file" ;; \
esac; \
done
finder_setwins=subdirs=`find $$wd -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term | */calc ) ;; \
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \
*) wins="$$wins $$file" ;; \
esac; \
done
@ -209,6 +209,12 @@ compile-files: subdirs.el doit
$(emacs) -f batch-byte-compile $$el || exit 1; \
done
compile-calc:
for el in $(find $(lisp)/calc -name '*.el'); do \
echo Compiling $$el; \
$(emacs) -f batch-byte-compile $$el || exit 1; \
done
# Backup compiled Lisp files in elc.tar.gz. If that file already
# exists, make a backup of it.