summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rwxr-xr-xalltests.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0cacaccb..978d4051 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ clean:
python test/test_farm.py clean
-rm -rf build coverage.egg-info dist htmlcov
-rm -f *.pyd */*.pyd
+ -rm -f *.so */*.so
-rm -f *.pyc */*.pyc */*/*.pyc */*/*/*.pyc */*/*/*/*.pyc */*/*/*/*/*.pyc
-rm -f *.pyo */*.pyo */*/*.pyo */*/*/*.pyo */*/*/*/*.pyo */*/*/*/*/*.pyo
-rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak
diff --git a/alltests.sh b/alltests.sh
index 79c3f1d7..c6cae5b2 100755
--- a/alltests.sh
+++ b/alltests.sh
@@ -16,7 +16,7 @@ do
echo "=== $v c ==="
COVERAGE_TEST_TRACER=c nosetests $@
echo "=== $v py ==="
- rm coverage/tracer.so
+ rm coverage/tracer*.so
COVERAGE_TEST_TRACER=py nosetests $@
done