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

* set MCU to CPU if undefined

This commit is contained in:
Oliver Hahm 2013-03-31 22:14:06 +02:00
parent 1ee0196ef4
commit fc3325b113

View File

@ -2,6 +2,9 @@ ifeq ($(strip $(RIOTCPU)),)
export RIOTCPU =$(RIOTBASE)/cpu
endif
ifeq ($(strip $(MCU)),)
MCU = $(CPU)
endif
# if you want to publish the board into the sources as an uppercase #define
BB = $(shell echo $(BOARD)|tr 'a-z' 'A-Z')