From: foobar Date: Sat, 9 Mar 2002 23:37:49 +0000 (+0000) Subject: - Fixed bug #15748 (fixed otherwise in 4.3.0-dev) X-Git-Tag: php-4.2.0RC1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86733d3b4fb30ef147acf5e06fb22863ff4d27a1;p=php - Fixed bug #15748 (fixed otherwise in 4.3.0-dev) --- diff --git a/Makefile.in b/Makefile.in index e2168a0ff6..8f31d21433 100644 --- a/Makefile.in +++ b/Makefile.in @@ -60,4 +60,7 @@ install-pear: install-modules install-su: install-pear install-tester +clean-modules: + rm -f modules/* + .NOEXPORT: diff --git a/build/rules.mk b/build/rules.mk index 96448914b0..b611b160e3 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -43,7 +43,9 @@ distclean-p depend-p clean-p: depend: depend-recursive @echo $(top_srcdir) $(top_builddir) $(srcdir) $(CPP) $(INCLUDES) $(EXTRA_INCLUDES) $(DEFS) $(CPPFLAGS) $(srcdir)/*.c *.c | $(AWK) -f $(top_srcdir)/build/mkdep.awk > $(builddir)/.deps || true -clean: clean-recursive clean-x +clean: clean-modules clean-recursive clean-x + +clean-modules: clean-x: rm -f $(targets) *.lo *.slo *.la *.o $(CLEANFILES)