summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-store/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/core/imag-store/tests/Makefile')
-rw-r--r--bin/core/imag-store/tests/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/core/imag-store/tests/Makefile b/bin/core/imag-store/tests/Makefile
new file mode 100644
index 00000000..c58562d7
--- /dev/null
+++ b/bin/core/imag-store/tests/Makefile
@@ -0,0 +1,14 @@
+ECHO=$(shell which echo) -e
+TARGETS=$(shell find -name "*test.sh" -type f)
+BASH=$(shell which bash)
+
+all: $(TARGETS)
+ @$(ECHO) $(TARGETS)
+
+$(TARGETS): %: .FORCE
+ @$(ECHO) "\t[BASH ]:\t$@"
+ @$(BASH) $@
+
+.FORCE:
+
+