diff options
| author | Richard M. Stallman | 1998-04-24 21:17:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-24 21:17:17 +0000 |
| commit | 4746aeeb13118a6501290f7a9b30edb701045e99 (patch) | |
| tree | 882b1c32af5d63529ff16472011b7db4c3b5cd51 | |
| parent | 06beea21caf9edf2cf992cff77988063fd848014 (diff) | |
| download | emacs-4746aeeb13118a6501290f7a9b30edb701045e99.tar.gz emacs-4746aeeb13118a6501290f7a9b30edb701045e99.zip | |
(custom-deps, updates): Allow cus-dep to be compiled.
(custom-deps, autoloads, finder-data, updates): Print list of dirs.
| -rw-r--r-- | lisp/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/Makefile b/lisp/Makefile index dd4e889392e..8caebebda95 100644 --- a/lisp/Makefile +++ b/lisp/Makefile | |||
| @@ -21,7 +21,8 @@ custom-deps: doit | |||
| 21 | *) wins="$$wins $$file" ;; \ | 21 | *) wins="$$wins $$file" ;; \ |
| 22 | esac; \ | 22 | esac; \ |
| 23 | done; \ | 23 | done; \ |
| 24 | $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins | 24 | echo Directories: $$wins; \ |
| 25 | $(EMACS) -batch -l cus-dep -f custom-make-dependencies $$wins | ||
| 25 | 26 | ||
| 26 | finder-data: doit | 27 | finder-data: doit |
| 27 | subdirs=`find . -type d -print`; \ | 28 | subdirs=`find . -type d -print`; \ |
| @@ -30,6 +31,7 @@ finder-data: doit | |||
| 30 | *) wins="$$wins $$file" ;; \ | 31 | *) wins="$$wins $$file" ;; \ |
| 31 | esac; \ | 32 | esac; \ |
| 32 | done; \ | 33 | done; \ |
| 34 | echo Directories: $$wins; \ | ||
| 33 | $(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins | 35 | $(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins |
| 34 | 36 | ||
| 35 | autoloads: doit | 37 | autoloads: doit |
| @@ -39,6 +41,7 @@ autoloads: doit | |||
| 39 | *) wins="$$wins $$file" ;; \ | 41 | *) wins="$$wins $$file" ;; \ |
| 40 | esac; \ | 42 | esac; \ |
| 41 | done; \ | 43 | done; \ |
| 44 | echo Directories: $$wins; \ | ||
| 42 | $(EMACS) -batch -f batch-update-autoloads $$wins | 45 | $(EMACS) -batch -f batch-update-autoloads $$wins |
| 43 | 46 | ||
| 44 | update-subdirs: doit | 47 | update-subdirs: doit |
| @@ -62,7 +65,8 @@ updates: doit | |||
| 62 | for file in $$wins; do \ | 65 | for file in $$wins; do \ |
| 63 | ../update-subdirs $$file; \ | 66 | ../update-subdirs $$file; \ |
| 64 | done; \ | 67 | done; \ |
| 65 | $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins; \ | 68 | echo Directories: $$wins; \ |
| 69 | $(EMACS) -batch -l cus-dep -f custom-make-dependencies $$wins; \ | ||
| 66 | $(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins; \ | 70 | $(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins; \ |
| 67 | $(EMACS) -batch -f batch-update-autoloads $$wins | 71 | $(EMACS) -batch -f batch-update-autoloads $$wins |
| 68 | 72 | ||