diff options
Diffstat (limited to 'leim/makefile.w32-in')
-rw-r--r-- | leim/makefile.w32-in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in index 08022d38cf2..6f6508feceb 100644 --- a/leim/makefile.w32-in +++ b/leim/makefile.w32-in @@ -215,5 +215,7 @@ distclean: clean maintainer-clean: distclean - $(FOREACH) $(WORLD) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR) +# We used to delete *~ here, but that might inadvertently remove +# precious files if it happens to match their short 8+3 aliases. extraclean: maintainer-clean - - $(FOREACH) *~ "#*" $(FORDO) $(DEL) $(FORVAR) $(ENDFOR) + - $(FOREACH) *.el~ "#*" $(FORDO) $(DEL) $(FORVAR) $(ENDFOR) |