1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/lpc2387/Makefile

21 lines
379 B
Makefile
Raw Normal View History

MODULE =cpu
include $(RIOTCPU)/$(CPU)/Makefile.include
DIRS = $(RIOTCPU)/arm_common $(RIOTCPU)/lpc_common periph
2014-02-14 14:30:16 +01:00
ifneq (,$(filter gpioint,$(USEMODULE)))
DIRS += gpioint
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter mci,$(USEMODULE)))
DIRS += mci
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter rtc,$(USEMODULE)))
DIRS += rtc
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter i2c,$(USEMODULE)))
2013-08-07 16:54:10 +02:00
DIRS += i2c
endif
include $(RIOTBASE)/Makefile.base