diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-10-02 18:46:37 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-10-02 18:46:37 +0000 |
commit | b4a74f303328a2aa099fe2d5853e5aaea6d64761 (patch) | |
tree | de2d0d348ec4e0a309182735f91727af01cc8633 /lisp/makefile.w32-in | |
parent | 9c3c9fdf41d831329795d671895d5e469356e54d (diff) | |
download | emacs-b4a74f303328a2aa099fe2d5853e5aaea6d64761.tar.gz |
(WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
(bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in subdirs
of cedet as well.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 3863fe7bc0b..bb583909778 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -89,6 +89,13 @@ WINS_CEDET=\ cedet/semantic \ cedet/srecode +WINS_CEDET_SUBDIRS=\ + cedet/semantic/analyze \ + cedet/semantic/bovine \ + cedet/semantic/decorate \ + cedet/semantic/symref \ + cedet/semantic/wisent + WINS_BASIC=\ calc \ calendar \ @@ -409,11 +416,12 @@ bootstrap-clean: bootstrap-clean-CMD: # if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g + -for %%f in ($(WINS_CEDET_SUBDIRS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g bootstrap-clean-SH: # if test -f "$(EMACS)"; then $(MAKE) $(MFLAGS) autoloads; fi # -rm -f $(lisp)/*.elc $(lisp)/*/*.elc - -for dir in . $(WINS); do rm -f $$dir/*.elc; done + -for dir in . $(WINS) $(WINS_CEDET_SUBDIRS); do rm -f $$dir/*.elc $$dir/*/*.elc $$dir/*/*/*.elc; done # Generate/update files for the bootstrap process. # When done, remove bootstrap-emacs from ../bin, so that |