mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
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/efm32lg/include/vendor/$(CPU_MODEL).h)
|
||
|
|
||
|
# vectors.o is provided by 'cpu_$(CPU_FAM)' module and not by 'cpu'
|
||
|
VECTORS_O = $(BINDIR)/cpu_efm32lg/vectors.o
|
||
|
|
||
|
# include vendor device headers
|
||
|
INCLUDES += -I$(RIOTCPU)/efm32/families/efm32lg/include/vendor
|