summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorStevenWdV <stevenwdv@gmail.com>2021-11-25 15:02:33 +0100
committerStevenWdV <stevenwdv@gmail.com>2021-11-25 15:02:33 +0100
commit5addc3fa00be1ac2017bd1a5ab1ecba4f73ce1da (patch)
tree2f293ca68330927278310cf84eb78ed376f75f58 /Makefile
parent638edbb2ffc69fd44d547f93b43bd741ab110096 (diff)
Add Python wrapper
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3cb93fa..f548989 100644
--- a/Makefile
+++ b/Makefile
@@ -9,8 +9,14 @@ test-go:
go test
test-wrappers: build
+ $(MAKE) -j .test-csharp .test-python
+
+.test-csharp:
$(MAKE) -C wrappers/csharp test
+.test-python:
+ $(MAKE) -C wrappers/python test
+
clean:
$(MAKE) -C exports clean
$(MAKE) -C wrappers/csharp clean