(finder_setwins, setwins): Include Calc again.
This commit is contained in:
parent
deece6f51a
commit
dcf91c25dc
1 changed files with 8 additions and 2 deletions
|
@ -114,14 +114,14 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
|
||||||
|
|
||||||
setwins=subdirs=`find $$wd -type d -print`; \
|
setwins=subdirs=`find $$wd -type d -print`; \
|
||||||
for file in $$subdirs; do \
|
for file in $$subdirs; do \
|
||||||
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \
|
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
|
||||||
*) wins="$$wins $$file" ;; \
|
*) wins="$$wins $$file" ;; \
|
||||||
esac; \
|
esac; \
|
||||||
done
|
done
|
||||||
|
|
||||||
finder_setwins=subdirs=`find $$wd -type d -print`; \
|
finder_setwins=subdirs=`find $$wd -type d -print`; \
|
||||||
for file in $$subdirs; do \
|
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" ;; \
|
*) wins="$$wins $$file" ;; \
|
||||||
esac; \
|
esac; \
|
||||||
done
|
done
|
||||||
|
@ -209,6 +209,12 @@ compile-files: subdirs.el doit
|
||||||
$(emacs) -f batch-byte-compile $$el || exit 1; \
|
$(emacs) -f batch-byte-compile $$el || exit 1; \
|
||||||
done
|
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
|
# Backup compiled Lisp files in elc.tar.gz. If that file already
|
||||||
# exists, make a backup of it.
|
# exists, make a backup of it.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue