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

cpu/mips32r2_common: prefix modules with mips32r2_common namespace

This prevents clash between modules names cpu and periph with main cpus.

Add dependency management in Makefile.include to keep things contained.
This commit is contained in:
Gaëtan Harter 2017-11-13 15:24:24 +01:00
parent c835ddf4e9
commit 383a69dfd2
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
MODULE = cpu
MODULE = mips32r2_common
DIRS = periph

View File

@ -1,6 +1,7 @@
export INCLUDES += -I$(RIOTCPU)/mips32r2_common/include
export USEMODULE += periph
export USEMODULE += mips32r2_common
export USEMODULE += mips32r2_common_periph
export USEMODULE += periph_common
export USEMODULE += newlib

View File

@ -1 +1,3 @@
MODULE = mips32r2_common_periph
include $(RIOTMAKE)/periph.mk