mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
e554a19756
`#ifdef FEATURE_PERIPH_NAME` usage should now be replaced by `#ifdef MODULE_PERIPH_NAME`. This deprecation was started by pull requests #8226 and #8227.
12 lines
473 B
Makefile
12 lines
473 B
Makefile
ED = $(addprefix MODULE_,$(sort $(USEMODULE) $(USEPKG)))
|
|
EXTDEFINES = $(addprefix -D,$(shell echo '$(ED)' | tr 'a-z-' 'A-Z_'))
|
|
|
|
# filter "pseudomodules" from "real modules", but not "no_pseudomodules"
|
|
NO_PSEUDOMODULES := $(filter $(NO_PSEUDOMODULES), $(sort $(USEMODULE) $(USEPKG)))
|
|
REALMODULES = $(filter-out $(PSEUDOMODULES), $(sort $(USEMODULE) $(USEPKG))) $(NO_PSEUDOMODULES)
|
|
export BASELIBS += $(REALMODULES:%=$(BINDIR)/%.a)
|
|
|
|
CFLAGS += $(EXTDEFINES)
|
|
|
|
export USEMODULE
|