diff options
author | Miles Bader <miles@gnu.org> | 2007-07-18 22:15:15 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-07-18 22:15:15 +0000 |
commit | 4dacf5c59890f619e2285e6afae1061c763d87fa (patch) | |
tree | eee51e638782332d75082c4f420708c35ffdd451 /src/makefile.w32-in | |
parent | 4bb99e3a15f1e7e13103df4908814294dc974463 (diff) | |
parent | 6e3aa3f58ef253559ce6416d6aa02885cd944ff1 (diff) | |
download | emacs-4dacf5c59890f619e2285e6afae1061c763d87fa.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 814-815)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-232
Diffstat (limited to 'src/makefile.w32-in')
-rw-r--r-- | src/makefile.w32-in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 280429b5a71..ea5382ff9f3 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in @@ -257,8 +257,10 @@ install: $(ALL) # # Maintenance # +# We used to delete *~, s/*~, m/*~ here, but that might inadvertently +# remove precious files if it happens to match their short 8+3 aliases. clean: - - $(DEL) *~ "s/*~" "m/*~" + - $(DEL) "s/*.h~" "m/*.h~" - $(DEL) $(COMPILER_TEMP_FILES) - $(DEL_TREE) $(OBJDIR) - $(DEL) stamp_BLD |