Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha@silbe.org>2009-09-13 20:09:19 (GMT)
committer Sascha Silbe <sascha@silbe.org>2009-09-25 19:16:19 (GMT)
commitf5a041c1056705bac565862593cda6584917de3c (patch)
tree42b627549367ec0c79bc7961bbfc5badd827d0fa
parent5a40eae11c74d5152dc7a35e4aac32493a358b77 (diff)
fix clean target, add check as alias for test
-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 {} \;