summaryrefslogtreecommitdiff
path: root/lisp/Makefile
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-04-24 21:17:17 +0000
committerRichard M. Stallman <rms@gnu.org>1998-04-24 21:17:17 +0000
commit4746aeeb13118a6501290f7a9b30edb701045e99 (patch)
tree882b1c32af5d63529ff16472011b7db4c3b5cd51 /lisp/Makefile
parent06beea21caf9edf2cf992cff77988063fd848014 (diff)
downloademacs-4746aeeb13118a6501290f7a9b30edb701045e99.tar.gz
(custom-deps, updates): Allow cus-dep to be compiled.
(custom-deps, autoloads, finder-data, updates): Print list of dirs.
Diffstat (limited to 'lisp/Makefile')
-rw-r--r--lisp/Makefile8
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
*) wins="$$wins $$file" ;; \
esac; \
done; \
- $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins
+ echo Directories: $$wins; \
+ $(EMACS) -batch -l cus-dep -f custom-make-dependencies $$wins
finder-data: doit
subdirs=`find . -type d -print`; \
@@ -30,6 +31,7 @@ finder-data: doit
*) wins="$$wins $$file" ;; \
esac; \
done; \
+ echo Directories: $$wins; \
$(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins
autoloads: doit
@@ -39,6 +41,7 @@ autoloads: doit
*) wins="$$wins $$file" ;; \
esac; \
done; \
+ echo Directories: $$wins; \
$(EMACS) -batch -f batch-update-autoloads $$wins
update-subdirs: doit
@@ -62,7 +65,8 @@ updates: doit
for file in $$wins; do \
../update-subdirs $$file; \
done; \
- $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins; \
+ echo Directories: $$wins; \
+ $(EMACS) -batch -l cus-dep -f custom-make-dependencies $$wins; \
$(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins; \
$(EMACS) -batch -f batch-update-autoloads $$wins