aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 000000000..054d6f576
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,12 @@
+all:
+ (cd libfoo; $(MAKE))
+ (cd foobinding; $(MAKE))
+
+
+test:
+ LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):$(PWD)/libfoo PYTHONPATH=$(PYTHONPATH):$(PWD)/foobinding/foo python foo_test.py
+
+clean:
+ (cd libfoo; $(MAKE) clean)
+ (cd foobinding; $(MAKE) clean)
+