1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-20 10:53:29 +02:00

11737: Avoid excessive Makefile rebuilding during "make clean".

This commit is contained in:
Bart Schaefer 2000-06-04 04:06:57 +00:00
parent 4c2601e753
commit 360abc7d0f
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2000-06-03 Bart Schaefer <schaefer@zsh.org>
* 11737: Src/Makefile.in: Remove modules.index and modules-bltin
during "make distclean" not "make clean" to prevent unnecessary
rebuilding of Makefiles in module subdirectories.
* 11736: Src/signals.c: Fix special scoping of TRAPEXIT.
* Felix: 11734: Src/Zle/compcore.c, Doc/Zsh/mod_complist.yo: Fix

View File

@ -216,12 +216,12 @@ mostlyclean-here:
clean-here:
rm -f modules.index.tmp modules.stamp zsh$(EXEEXT) ansi2knr.o ansi2knr
rm -f modules.index modules-bltin
rm -f libzsh-*.$(DL_EXT)
.PHONY: clean-here
distclean-here:
rm -f TAGS tags
rm -f modules.index modules-bltin
rm -f Makefile mymods.conf
.PHONY: distclean-here