Files
aiken/examples/acceptance_tests/Makefile
KtorZ a62fb1905e rename examples/tests/{a,b,c,d,e,f} into examples/acceptance_tests/00{1,2,3,4,5,6}
Also added a little Makefile to run them all in one go.
2022-12-14 09:45:24 +01:00

6 lines
120 B
Makefile

all:
@for t in $(shell find . -regex ".*[0-9]\{3\}" -type d | sort); do \
aiken check -d $${t}; \
echo ""; \
done