diff options
| -rw-r--r-- | leim/ChangeLog | 3 | ||||
| -rw-r--r-- | leim/Makefile.in | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 513201c4a78..6ea68248238 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-03-18 Glenn Morris <rgm@gnu.org> | 1 | 2010-03-18 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (maintainer-clean): Use bootstrap-clean. | ||
| 4 | (extraclean): Fix deletion patterns. | ||
| 5 | |||
| 3 | * Makefile.in (dot): Remove, since ../ is used throughout the | 6 | * Makefile.in (dot): Remove, since ../ is used throughout the |
| 4 | other Makefiles. | 7 | other Makefiles. |
| 5 | 8 | ||
diff --git a/leim/Makefile.in b/leim/Makefile.in index bd67f373af1..f0fba8d2462 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in | |||
| @@ -275,16 +275,17 @@ clean mostlyclean: | |||
| 275 | # bootstrapping should not leave non-fresh .elc files behind. | 275 | # bootstrapping should not leave non-fresh .elc files behind. |
| 276 | bootstrap-clean: clean | 276 | bootstrap-clean: clean |
| 277 | rm -f ${WORLD} | 277 | rm -f ${WORLD} |
| 278 | ## FIXME some compiled files go to srcdir, some don't? | ||
| 279 | # cd ${srcdir}; rm -f *.elc */*.elc | ||
| 278 | 280 | ||
| 279 | distclean: clean | 281 | distclean: clean |
| 280 | if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi | 282 | if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi |
| 281 | rm -f Makefile | 283 | rm -f Makefile |
| 282 | 284 | ||
| 283 | maintainer-clean: distclean | 285 | maintainer-clean: distclean bootstrap-clean |
| 284 | rm -f ${WORLD} | ||
| 285 | 286 | ||
| 286 | extraclean: maintainer-clean | 287 | extraclean: maintainer-clean |
| 287 | -rm -f *~ \#* m/?*~ s/?*~ | 288 | -rm -f *~ \#* */*~ */\#* |
| 288 | 289 | ||
| 289 | .PHONY: check-declare | 290 | .PHONY: check-declare |
| 290 | 291 | ||