mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
implement buildtest target
the target runs make for every board in boards
This commit is contained in:
parent
cc45909ffc
commit
50a2dbeaa1
@ -99,3 +99,9 @@ doc:
|
||||
|
||||
debug:
|
||||
$(DEBUGGER) $(DEBUGGER_FLAGS)
|
||||
|
||||
buildtest:
|
||||
@for BOARD in $$(sed -n -e 's/ifeq[^,]*,\([^)]*\))/\1/p' $(RIOTBASE)/boards/Makefile.base); do \
|
||||
echo -n "Building for $${BOARD} .. "; \
|
||||
env -i PATH=$${PATH} BOARD=$${BOARD} $(MAKE) -B clean all >/dev/null 2>&1 && echo "success" || echo "failed" ; \
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user