aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/makefile.w32-in10
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=\
89 cedet/semantic \ 89 cedet/semantic \
90 cedet/srecode 90 cedet/srecode
91 91
92WINS_CEDET_SUBDIRS=\
93 cedet/semantic/analyze \
94 cedet/semantic/bovine \
95 cedet/semantic/decorate \
96 cedet/semantic/symref \
97 cedet/semantic/wisent
98
92WINS_BASIC=\ 99WINS_BASIC=\
93 calc \ 100 calc \
94 calendar \ 101 calendar \
@@ -409,11 +416,12 @@ bootstrap-clean:
409bootstrap-clean-CMD: 416bootstrap-clean-CMD:
410# if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads 417# if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads
411 -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g 418 -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g
419 -for %%f in ($(WINS_CEDET_SUBDIRS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g
412 420
413bootstrap-clean-SH: 421bootstrap-clean-SH:
414# if test -f "$(EMACS)"; then $(MAKE) $(MFLAGS) autoloads; fi 422# if test -f "$(EMACS)"; then $(MAKE) $(MFLAGS) autoloads; fi
415# -rm -f $(lisp)/*.elc $(lisp)/*/*.elc 423# -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
416 -for dir in . $(WINS); do rm -f $$dir/*.elc; done 424 -for dir in . $(WINS) $(WINS_CEDET_SUBDIRS); do rm -f $$dir/*.elc $$dir/*/*.elc $$dir/*/*/*.elc; done
417 425
418# Generate/update files for the bootstrap process. 426# Generate/update files for the bootstrap process.
419# When done, remove bootstrap-emacs from ../bin, so that 427# When done, remove bootstrap-emacs from ../bin, so that