mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 04:02:31 +00:00
That module is not used anymore: it was introduced pre-Zephyr to add some kind of awareness when debugging ARM Cortex-M3 code with GDB but was never really used by anyone. It has bitrotted, and with the recent move of the tTCS and tNANO data structures to common _kernel and k_thread, it does not even compile anymore. Jira: ZEP-1284, ZEP-951 Change-Id: Ic9afed00f4229324fe5d2aa97dc6f1c935953244 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
10 lines
311 B
Makefile
10 lines
311 B
Makefile
obj-$(CONFIG_HPET_TIMER) += hpet.o
|
|
obj-$(CONFIG_LOAPIC_TIMER) += loapic_timer.o
|
|
obj-$(CONFIG_ARCV2_TIMER) += arcv2_timer0.o
|
|
obj-$(CONFIG_ALTERA_AVALON_TIMER) += altera_avalon_timer.o
|
|
obj-$(CONFIG_NRF_RTC_TIMER) += nrf_rtc_timer.o
|
|
|
|
obj-$(CONFIG_CORTEX_M_SYSTICK) += cortex_m_systick.o
|
|
|
|
obj-y += sys_clock_init.o
|