3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-09-02 01:30:42 +00:00
sby/tests/scripted/Makefile
2022-03-29 19:10:29 +02:00

11 lines
147 B
Makefile

SH_FILES=$(wildcard *.sh)
SH_TESTS=$(addprefix test_,$(SH_FILES:.sh=))
test: $(SH_TESTS)
test_%: %.sh FORCE
bash $<
FORCE:
.PHONY: test FORCE