mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-12 14:36:05 +00:00
added the riscv-privilege SOC_FAMILY, under which all riscv SOCs supporting the riscv privilege architecture specifcation shall reside. These SOCs shall notably have a common base for handling IRQs. Moved riscv32-qemu under the riscv-privilege SOC_FAMILY Change-Id: I5372cb38e3eaed78886f22b212ab4f881ef30b3f Signed-off-by: Jean-Paul Etienne <fractalclone@gmail.com>
12 lines
233 B
Makefile
12 lines
233 B
Makefile
subdir-ccflags-y +=-I$(srctree)/include/drivers
|
|
subdir-ccflags-y +=-I$(srctree)/drivers
|
|
subdir-asflags-y += $(subdir-ccflags-y)
|
|
|
|
ifneq ($(SOC_FAMILY),)
|
|
obj-y += soc/$(SOC_FAMILY)/
|
|
else
|
|
obj-y += soc/$(SOC_PATH)/
|
|
endif
|
|
|
|
obj-y += core/
|