mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
a0462488e8
Move INCLUDES and VECTORS_O to Makefile.include duplicate EFM32_HEADER while cpu.txt is not migrated.
11 lines
499 B
Makefile
11 lines
499 B
Makefile
# Find the header file that should exist if the CPU is supported. Only headers
|
|
# for supported boards are included, but to support another CPU, it should be
|
|
# as easy as adding the header file only.
|
|
EFM32_HEADER = $(wildcard $(RIOTCPU)/efm32/families/efm32gg/include/vendor/$(CPU_MODEL).h)
|
|
|
|
# vectors.o is provided by 'cpu_$(CPU_FAM)' module and not by 'cpu'
|
|
VECTORS_O = $(BINDIR)/cpu_efm32gg/vectors.o
|
|
|
|
# include vendor device headers
|
|
INCLUDES += -I$(RIOTCPU)/efm32/families/efm32gg/include/vendor
|