From: Ryan Bloom Date: Wed, 16 Feb 2000 00:55:51 +0000 (+0000) Subject: Fix the make clean rules. We must delete *.slo files or we are leaving stale X-Git-Tag: 1.3.12~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=294e28e6637e76b408c1c53b31c213532e3bf416;p=apache 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 --- 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