You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by jg...@apache.org on 2006/03/10 19:21:18 UTC

svn commit: r384881 - in /httpd/mod_python/trunk: Makefile.in test/Makefile.in

Author: jgallacher
Date: Fri Mar 10 10:21:16 2006
New Revision: 384881

URL: http://svn.apache.org/viewcvs?rev=384881&view=rev
Log:
Added test/Makefile rules for clean and distclean (MODPYTHON-139).

Modified:
    httpd/mod_python/trunk/Makefile.in
    httpd/mod_python/trunk/test/Makefile.in

Modified: httpd/mod_python/trunk/Makefile.in
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/Makefile.in?rev=384881&r1=384880&r2=384881&view=diff
==============================================================================
--- httpd/mod_python/trunk/Makefile.in (original)
+++ httpd/mod_python/trunk/Makefile.in Fri Mar 10 10:21:16 2006
@@ -74,12 +74,14 @@
 clean:
 	cd src && $(MAKE) clean
 	cd dist && $(MAKE) clean
+	cd test && $(MAKE) clean
 	rm -f core
 
 distclean: clean
 	cd src && $(MAKE) distclean
 	cd Doc && $(MAKE) distclean
 	cd dist && $(MAKE) distclean
+	cd test && $(MAKE) distclean
 	rm -rf Makefile config.h config.status config.cache config.log \
 		test/testconf.py 
 

Modified: httpd/mod_python/trunk/test/Makefile.in
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/test/Makefile.in?rev=384881&r1=384880&r2=384881&view=diff
==============================================================================
--- httpd/mod_python/trunk/test/Makefile.in (original)
+++ httpd/mod_python/trunk/test/Makefile.in Fri Mar 10 10:21:16 2006
@@ -18,3 +18,13 @@
 
 check:
 	$(PYTHON_BIN) test.py
+
+clean:
+	rm -f *.pyc *.pyo 
+	cd conf && rm -f test.conf
+	cd htdocs && rm -f *pyc *pyo
+	rm -rf logs
+	rm -rf tmp
+
+distclean: clean
+	rm -f Makefile testconf.py