mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
17929a5ce4
Rationale 1: The common part made only sense for (some) NXP ARM7 MCUs, but was misleading for MCUs like the LPC1768. Rationale 2: The common part was only used by one specific MCU implementation - no need to outsource it.
21 lines
358 B
Makefile
21 lines
358 B
Makefile
MODULE =cpu
|
|
|
|
include $(RIOTCPU)/$(CPU)/Makefile.include
|
|
|
|
DIRS = $(RIOTCPU)/arm7_common periph
|
|
|
|
ifneq (,$(filter gpioint,$(USEMODULE)))
|
|
DIRS += gpioint
|
|
endif
|
|
ifneq (,$(filter mci,$(USEMODULE)))
|
|
DIRS += mci
|
|
endif
|
|
ifneq (,$(filter rtc,$(USEMODULE)))
|
|
DIRS += rtc
|
|
endif
|
|
ifneq (,$(filter i2c,$(USEMODULE)))
|
|
DIRS += i2c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|