summaryrefslogtreecommitdiffstats
path: root/util/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/Makefile')
-rw-r--r--util/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/util/Makefile b/util/Makefile
new file mode 100644
index 00000000..b5ce668a
--- /dev/null
+++ b/util/Makefile
@@ -0,0 +1,13 @@
+usage:;cat Makefile
+
+test: export PATH := "$(PWD)/bin:$(PATH)"
+test:
+ @tests="`find t -type f -executable`"; \
+ i=1; \
+ echo $$i..`echo "$$tests" | wc -l`; \
+ for t in $$tests; do \
+ ./$$t; \
+ case $$? in 0) ok=ok;; *) ok='not ok';; esac; \
+ echo $$ok $$i - $$t; \
+ (( i++ )); \
+ done