diff options
| author | Glenn Morris | 2013-11-27 13:29:28 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-11-27 13:29:28 -0500 |
| commit | 2b58a9cc2155fc1cf97b81656a6dd06c8fc925ed (patch) | |
| tree | c30db78929001e9a60b410a4bb2ff042469c6fbe | |
| parent | 7e3bf78c8900d7bac3bbeca038a99f5ce7afeeee (diff) | |
| download | emacs-2b58a9cc2155fc1cf97b81656a6dd06c8fc925ed.tar.gz emacs-2b58a9cc2155fc1cf97b81656a6dd06c8fc925ed.zip | |
* leim/Makefile.in (bootstrap-clean): No need to delete .elc,
lisp/ rules will do that.
| -rw-r--r-- | leim/ChangeLog | 3 | ||||
| -rw-r--r-- | leim/Makefile.in | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 03b80e49e5a..b5099b5a442 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-11-27 Glenn Morris <rgm@gnu.org> | 1 | 2013-11-27 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (bootstrap-clean): No need to delete .elc, | ||
| 4 | lisp/ rules will do that. | ||
| 5 | |||
| 3 | * Makefile.in (extraclean): New. | 6 | * Makefile.in (extraclean): New. |
| 4 | (bootstrap-clean): Move ja-dic deletion to extraclean. | 7 | (bootstrap-clean): Move ja-dic deletion to extraclean. |
| 5 | 8 | ||
diff --git a/leim/Makefile.in b/leim/Makefile.in index ccc15ae4b2e..9fe71ae6fe1 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in | |||
| @@ -143,8 +143,7 @@ ${leimdir}/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L | |||
| 143 | .PHONY: bootstrap-clean distclean maintainer-clean extraclean | 143 | .PHONY: bootstrap-clean distclean maintainer-clean extraclean |
| 144 | 144 | ||
| 145 | bootstrap-clean: | 145 | bootstrap-clean: |
| 146 | rm -f ${TIT_MISC} ${TIT_MISC:.el=.elc} \ | 146 | rm -f ${TIT_MISC} ${leimdir}/leim-list.el changed.tit changed.misc |
| 147 | ${leimdir}/leim-list.el changed.tit changed.misc | ||
| 148 | 147 | ||
| 149 | distclean: | 148 | distclean: |
| 150 | rm -f Makefile | 149 | rm -f Makefile |
| @@ -153,6 +152,8 @@ maintainer-clean: distclean bootstrap-clean | |||
| 153 | 152 | ||
| 154 | ## We do not delete ja-dic, even in a bootstrap, because it rarely | 153 | ## We do not delete ja-dic, even in a bootstrap, because it rarely |
| 155 | ## changes and is slow to regenerate. | 154 | ## changes and is slow to regenerate. |
| 155 | ## TODO? Could consider doing the same with TIT_MISC, though those | ||
| 156 | ## are much faster to generate. | ||
| 156 | extraclean: | 157 | extraclean: |
| 157 | rm -rf ${leimdir}/ja-dic | 158 | rm -rf ${leimdir}/ja-dic |
| 158 | 159 | ||