1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/efm32/Makefile
2020-10-06 16:43:47 +02:00

30 lines
716 B
Makefile

MODULE = cpu
# add a list of subdirectories, that should also be build
DIRS += periph
DIRS += $(RIOTCPU)/cortexm_common
ifneq (,$(filter cpu_efm32gg,$(USEMODULE)))
DIRS += families/efm32gg
endif
ifneq (,$(filter cpu_efm32lg,$(USEMODULE)))
DIRS += families/efm32lg
endif
ifneq (,$(filter cpu_efm32pg1b,$(USEMODULE)))
DIRS += families/efm32pg1b
endif
ifneq (,$(filter cpu_efm32pg12b,$(USEMODULE)))
DIRS += families/efm32pg12b
endif
ifneq (,$(filter cpu_efm32zg,$(USEMODULE)))
DIRS += families/efm32zg
endif
ifneq (,$(filter cpu_efr32mg1p,$(USEMODULE)))
DIRS += families/efr32mg1p
endif
ifneq (,$(filter cpu_efr32mg12p,$(USEMODULE)))
DIRS += families/efr32mg12p
endif
include $(RIOTBASE)/Makefile.base