Add Makefile for testing imag-store
This commit is contained in:
parent
b25aa29fee
commit
fb2300a799
1 changed files with 14 additions and 0 deletions
14
imag-store/tests/Makefile
Normal file
14
imag-store/tests/Makefile
Normal 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:
|
||||
|
||||
|
Loading…
Reference in a new issue