diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-08 01:12:58 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-08 01:12:58 +0000 |
commit | 3aeca4ac4d8b112ccf842917769468fc14e790f9 (patch) | |
tree | 2fae6e2c5e019bb8d459d60a2da2cd632c195156 /lisp/makefile.w32-in | |
parent | 2dc07a1273fe9057a4c934dc8474fd0432213455 (diff) | |
download | emacs-3aeca4ac4d8b112ccf842917769468fc14e790f9.tar.gz |
(setwins): Remove.
(WINS_ALMOST): New macro.
(WINS): Use it.
(autoloads): Don't extract autoloads from files in obsolete/.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 6c5a68d9ec7..8acdde52670 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -67,17 +67,8 @@ COMPILE_FIRST = \ emacs = "$(EMACS)" $(EMACSOPT) -# Common command to find subdirectories - -setwins=subdirs=`find $$wd -type d -print`; \ - for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ - *) wins="$$wins $$file" ;; \ - esac; \ - done - # Have to define the list of subdirs manually when not using sh. -WINS=\ +WINS_ALMOST=\ calc \ calendar \ emacs-lisp \ @@ -90,13 +81,15 @@ WINS=\ mail \ mh-e \ net \ - obsolete \ play \ progmodes \ term \ textmodes \ url +WINS= $(WINS_ALMOST) \ + obsolete + doit: $(lisp)/cus-load.el: @@ -160,10 +153,10 @@ loaddefs.el-CMD: # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as # this can break with GNU Make 3.81 and later if sh.exe is used. autoloads: $(lisp)/loaddefs.el doit - @echo Directories: . $(WINS) + @echo Directories: . $(WINS_ALMOST) $(emacs) -l autoload \ --eval $(ARGQUOTE)(setq find-file-hook nil find-file-suppress-same-file-warnings t)$(ARGQUOTE) \ - -f w32-batch-update-autoloads "$(lisp)/loaddefs.el" . $(WINS) + -f w32-batch-update-autoloads "$(lisp)/loaddefs.el" . $(WINS_ALMOST) $(lisp)/subdirs.el: $(MAKE) $(MFLAGS) update-subdirs |