mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
13 lines
233 B
Makefile
13 lines
233 B
Makefile
|
.PHONY: all info-boards-supported
|
||
|
|
||
|
TESTS := $(patsubst test-%.mk,run-%,$(wildcard test-*.mk))
|
||
|
|
||
|
all: $(TESTS)
|
||
|
|
||
|
info-boards-supported:
|
||
|
@echo none
|
||
|
|
||
|
run-%: test-%.mk
|
||
|
@echo "Running test $(patsubst run-%,%,$@)"
|
||
|
@$(MAKE) --silent -f $<
|