mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 11:01:58 +00:00
Updates references to CONFIG_BSP_DIR to CONFIG_PLATFORM as part of the BSP -> platform clean up. Note that despite the renaming, the usage of the config option remains unchanged. Change-Id: I2846c3f761cf09871019c0855bf1824ae03e6b3c Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
14 lines
479 B
Makefile
14 lines
479 B
Makefile
ccflags-y +=-I$(srctree)/include/drivers
|
|
ccflags-y +=-I$(srctree)/arch/$(ARCH)/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
|
asflags-y +=-I$(srctree)/arch/x86/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
|
|
|
obj-${CONFIG_PIC}${CONFIG_SHUTOFF_PIC} = i8259.o
|
|
|
|
obj-$(CONFIG_PIC) += i8259_boi.o
|
|
obj-$(CONFIG_PIC) += system_pic.o
|
|
obj-$(CONFIG_LOAPIC) += system_apic.o
|
|
obj-$(CONFIG_LOAPIC) += loapic_intr.o
|
|
obj-$(CONFIG_IOAPIC) += ioapic_intr.o
|
|
|
|
obj-$(CONFIG_ARCV2_INTERRUPT_UNIT) += arcv2_irq_unit.o
|