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/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 0000000..5ef30e6
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,22 @@
+all:
+install:
+uninstall:
+
+check:
+ # bad hack to make Python extensions work from source directory
+ cp ../src/carquinyol/.libs/*.so ../src/carquinyol/
+ @./runalltests.py
+
+valgrind:
+ @echo "Profiling the process. Run kcachegrind on the output"
+ valgrind --tool=callgrind --suppressions=valgrind-python.supp python runalltests.py
+
+distclean: clean
+clean:
+ @find . -name "*.pyc" -exec rm {} \;
+ @find . -name "*.pyo" -exec rm {} \;
+ @find . -name "*~" -exec rm {} \;
+ @find . -name "callgrind.out*" -exec rm {} \;
+
+tags:
+