mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-25 07:35:21 +00:00
Basic build framework for Nios2. Everything is stubbed out, we just want to have a build going so that we can start to parallelize implementation tasks. This patch is not intended to be functional, but should be able to produce a binary for all the nanokernel-based sanity checks. Change-Id: I12dd8ca4a2273f7662bee46175822c9bbd99202a Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
11 lines
409 B
Makefile
11 lines
409 B
Makefile
obj-$(CONFIG_HPET_TIMER) += hpet.o
|
|
obj-$(CONFIG_LOAPIC_TIMER) += loapic_timer.o
|
|
obj-$(CONFIG_ARCV2_TIMER) += arcv2_timer0.o
|
|
obj-$(CONFIG_NIOS2_AVALON_TIMER) += nios2_avalon_timer.o
|
|
|
|
_CORTEX_M_SYSTICK_AND_GDB_INFO_yy = y
|
|
obj-$(CONFIG_CORTEX_M_SYSTICK) += cortex_m_systick.o
|
|
obj-$(_CORTEX_M_SYSTICK_AND_GDB_INFO_$(CONFIG_CORTEX_M_SYSTICK)$(CONFIG_GDB_INFO)) += cortex_m_systick_gdb.o
|
|
|
|
obj-y += sys_clock_init.o
|