[Getdata-commits] SF.net SVN: getdata:[855] trunk/getdata/bindings
Scientific Database Format
Brought to you by:
ketiltrout
|
From: <ket...@us...> - 2013-10-23 00:56:55
|
Revision: 855
http://sourceforge.net/p/getdata/code/855
Author: ketiltrout
Date: 2013-10-23 00:56:47 +0000 (Wed, 23 Oct 2013)
Log Message:
-----------
Make distclean work when things aren't configured.
Modified Paths:
--------------
trunk/getdata/bindings/php/Makefile.am
trunk/getdata/bindings/python/Makefile.am
Modified: trunk/getdata/bindings/php/Makefile.am
===================================================================
--- trunk/getdata/bindings/php/Makefile.am 2013-10-22 20:55:24 UTC (rev 854)
+++ trunk/getdata/bindings/php/Makefile.am 2013-10-23 00:56:47 UTC (rev 855)
@@ -41,7 +41,9 @@
cd getdata && ${PHPIZE}
clean-local:
+if MAKE_PHPBINDINGS
cd getdata && ${PHPIZE} --clean
+endif
rm -rf *~ getdata/*~ ${BUILT_SOURCES} getdata/Makefile.temp
SUBDIRS=. test
Modified: trunk/getdata/bindings/python/Makefile.am
===================================================================
--- trunk/getdata/bindings/python/Makefile.am 2013-10-22 20:55:24 UTC (rev 854)
+++ trunk/getdata/bindings/python/Makefile.am 2013-10-23 00:56:47 UTC (rev 855)
@@ -40,6 +40,8 @@
cd .. && ${MAKE} make_parameters
clean-local:
+if MAKE_PYBINDINGS
if [ -e setup.py ]; then ${PYTHON} setup.py clean; fi
+endif
rm -rf build pygetdata.so ${BUILT_SOURCES} debug.c *~
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|