From 294e28e6637e76b408c1c53b31c213532e3bf416 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Wed, 16 Feb 2000 00:55:51 +0000 Subject: [PATCH] Fix the make clean rules. We must delete *.slo files or we are leaving stale libraries in the modules/standard directory when configured for dynamic modules. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84625 13f79535-47bb-0310-9956-ffa450edef68 --- build/rules.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/rules.mk b/build/rules.mk index e0289eb58f..5b109a0c2d 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -21,7 +21,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ############################################################################## -# $Id: rules.mk,v 1.1 2000/01/11 13:10:59 sascha Exp $ +# $Id: rules.mk,v 1.2 2000/02/16 00:55:51 rbb Exp $ # include $(DEPTH)/config_vars.mk @@ -117,7 +117,7 @@ depend: depend-recursive clean: clean-recursive clean-x clean-x: - rm -f $(targets) *.lo *.la *.o $(CLEANFILES) + rm -f $(targets) *.slo *.lo *.la *.o $(CLEANFILES) rm -rf .libs distclean: distclean-recursive clean-x -- 2.50.1