Makefile: add 'check' target
diff --git a/bindings/python/Makefile b/bindings/python/Makefile
index 75446de..9ac4c26 100644
--- a/bindings/python/Makefile
+++ b/bindings/python/Makefile
@@ -47,3 +47,13 @@
 clean:
 	rm -rf $(OBJDIR)
 	rm -f capstone/*.so
+
+
+TESTS = test.py test_detail.py test_arm.py test_arm64.py test_mips.py test_ppc.py
+TESTS += test_sparc.py test_systemz.py test_x86.py test_xcore.py test_skipdata.py
+check:
+	@for t in $(TESTS); do \
+		echo Check $$t ... ; \
+		./$$t > /dev/null && echo OK || echo FAILED; \
+	done
+