mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
12 lines
147 B
Makefile
12 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
|