Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index e42c6f7..e8e5513 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,5 +1,6 @@
all: clean test
+check: test
test:
# bad hack to make Python extensions work from source directory
cp ../src/carquinyol/.libs/*.so ../src/carquinyol/
@@ -10,8 +11,8 @@ valgrind:
valgrind --tool=callgrind --suppressions=valgrind-python.supp python runalltests.py
clean:
- @${PYTHON} ./cleaner.py
@find . -name "*.pyc" -exec rm {} \;
+ @find . -name "*.pyo" -exec rm {} \;
@find . -name "*~" -exec rm {} \;
@find . -name "callgrind.out*" -exec rm {} \;