All driver Makefiles are adding the same cflags and they have been done inconsistenly, make all drivers inherit from the top level Makefile and remove unused includes. Change-Id: Ie66d0ba7a418ac26f7eb709f50c887dc682e935c Signed-off-by: Anas Nashif <anas.nashif@intel.com>
11 lines
405 B
Makefile
11 lines
405 B
Makefile
obj-$(CONFIG_PIT) = i8253.o
|
|
obj-$(CONFIG_HPET_TIMER) += hpet.o
|
|
obj-$(CONFIG_LOAPIC_TIMER) += loapic_timer.o
|
|
obj-$(CONFIG_ARCV2_TIMER) += arcv2_timer0.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-$(CONFIG_SYS_CLOCK_EXISTS) += sys_clock_init.o
|