diff options
| author | Colin Walters | 2001-11-23 17:27:28 +0000 |
|---|---|---|
| committer | Colin Walters | 2001-11-23 17:27:28 +0000 |
| commit | dcf91c25dcb2fc3e61b0307a9f6ee05e1e976f3c (patch) | |
| tree | 251d008b089c3623a4e1f7adf99185fe0c529275 | |
| parent | deece6f51a419739abb1eba6cde42677643e5510 (diff) | |
| download | emacs-dcf91c25dcb2fc3e61b0307a9f6ee05e1e976f3c.tar.gz emacs-dcf91c25dcb2fc3e61b0307a9f6ee05e1e976f3c.zip | |
(finder_setwins, setwins): Include Calc again.
| -rw-r--r-- | lisp/Makefile.in | 10 |
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 | ||
| 115 | setwins=subdirs=`find $$wd -type d -print`; \ | 115 | setwins=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 | ||
| 122 | finder_setwins=subdirs=`find $$wd -type d -print`; \ | 122 | finder_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 | ||
| 212 | compile-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 | ||