Add Makefile for testing imag-store

This commit is contained in:
Matthias Beyer 2016-09-19 22:12:14 +02:00
parent b25aa29fee
commit fb2300a799

14
imag-store/tests/Makefile Normal file
View file

@ -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: