-
Gaëtan Harter authored
`#ifdef FEATURE_PERIPH_NAME` usage should now be replaced by `#ifdef MODULE_PERIPH_NAME`. This deprecation was started by pull requests #8226 and #8227.
Gaëtan Harter authored`#ifdef FEATURE_PERIPH_NAME` usage should now be replaced by `#ifdef MODULE_PERIPH_NAME`. This deprecation was started by pull requests #8226 and #8227.
modules.inc.mk 473 B
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