Skip to content
Snippets Groups Projects
Commit a6707669 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

make: add info-modules make target

parent 5babcfc2
No related branches found
No related tags found
No related merge requests found
...@@ -191,7 +191,7 @@ BASELIBS += $(BINDIR)$(BOARD)_base.a ...@@ -191,7 +191,7 @@ BASELIBS += $(BINDIR)$(BOARD)_base.a
BASELIBS += $(BINDIR)${APPLICATION}.a BASELIBS += $(BINDIR)${APPLICATION}.a
BASELIBS += $(USEPKG:%=${BINDIR}%.a) BASELIBS += $(USEPKG:%=${BINDIR}%.a)
.PHONY: all clean flash term doc debug debug-server reset objdump help .PHONY: all clean flash term doc debug debug-server reset objdump help info-modules
.PHONY: ..in-docker-container .PHONY: ..in-docker-container
ELFFILE ?= $(BINDIR)$(APPLICATION).elf ELFFILE ?= $(BINDIR)$(APPLICATION).elf
...@@ -426,6 +426,9 @@ endif ...@@ -426,6 +426,9 @@ endif
help: help:
@$(MAKE) -qp | sed -ne 's/\(^[a-z][a-z_-]*\):.*/\1/p' | sort | uniq @$(MAKE) -qp | sed -ne 's/\(^[a-z][a-z_-]*\):.*/\1/p' | sort | uniq
info-modules:
@for i in $(sort $(USEMODULE)); do echo $$i; done
ifneq (,$(filter iotlab-m3 wsn430-v1_3b wsn430-v1_4,$(BOARD))) ifneq (,$(filter iotlab-m3 wsn430-v1_3b wsn430-v1_4,$(BOARD)))
include $(RIOTBASE)/dist/testbed-support/Makefile.iotlab include $(RIOTBASE)/dist/testbed-support/Makefile.iotlab
endif endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment