diff options
| author | Eli Zaretskii | 2009-10-02 18:46:37 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-10-02 18:46:37 +0000 |
| commit | b4a74f303328a2aa099fe2d5853e5aaea6d64761 (patch) | |
| tree | de2d0d348ec4e0a309182735f91727af01cc8633 | |
| parent | 9c3c9fdf41d831329795d671895d5e469356e54d (diff) | |
| download | emacs-b4a74f303328a2aa099fe2d5853e5aaea6d64761.tar.gz emacs-b4a74f303328a2aa099fe2d5853e5aaea6d64761.zip | |
(WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
(bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in subdirs
of cedet as well.
| -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=\ | |||
| 89 | cedet/semantic \ | 89 | cedet/semantic \ |
| 90 | cedet/srecode | 90 | cedet/srecode |
| 91 | 91 | ||
| 92 | WINS_CEDET_SUBDIRS=\ | ||
| 93 | cedet/semantic/analyze \ | ||
| 94 | cedet/semantic/bovine \ | ||
| 95 | cedet/semantic/decorate \ | ||
| 96 | cedet/semantic/symref \ | ||
| 97 | cedet/semantic/wisent | ||
| 98 | |||
| 92 | WINS_BASIC=\ | 99 | WINS_BASIC=\ |
| 93 | calc \ | 100 | calc \ |
| 94 | calendar \ | 101 | calendar \ |
| @@ -409,11 +416,12 @@ bootstrap-clean: | |||
| 409 | bootstrap-clean-CMD: | 416 | bootstrap-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 | ||
| 413 | bootstrap-clean-SH: | 421 | bootstrap-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 |