This patch adds a rather simplistic Makefile to "checkers", purely for
exercising the test suites of the various harness.

checkers/ChangeLog:
        * Makefile: New file.
---
 checkers/Makefile | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 checkers/Makefile

diff --git a/checkers/Makefile b/checkers/Makefile
new file mode 100644
index 0000000..f69dccf
--- /dev/null
+++ b/checkers/Makefile
@@ -0,0 +1,23 @@
+all: check-all
+
+check-all: check-all-python2 check-all-python3
+
+check-all-python2:
+       python2 checker.py
+       python2 clang_analyzer.py unittest
+       python2 cppcheck.py unittest
+       python2 flawfinder.py unittest
+       python2 splint.py unittest
+       python2 always_fails.py unittest
+       python2 ianal.py unittest
+       python2 coverity.py unittest
+
+check-all-python3:
+       python3 checker.py
+       python3 clang_analyzer.py unittest
+       python3 cppcheck.py unittest
+       python3 flawfinder.py unittest
+       python3 splint.py unittest
+       python3 always_fails.py unittest
+       python3 ianal.py unittest
+       python3 coverity.py unittest
-- 
1.8.5.3

Reply via email to