TESTER_SRC := ./test.sh TESTS := $(wildcard ./tests/*.ol) .PHONY: all all: @set -e; \ for file in $(TESTS); do \ $(TESTER_SRC) "$$file"; \ echo; \ done .PHONY: clean clean: @rm -rf ./tests/*.ol.test*