Moves the Cortex-M timer driver so that it resides with the other timer drivers. Change-Id: I3324c53356efd9f5fd88752a98e4ae301ea38d47 Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
12 lines
457 B
Makefile
12 lines
457 B
Makefile
ccflags-y +=-I$(srctree)/arch/$(ARCH)
|
|
ccflags-y +=-I$(srctree)/arch/$(ARCH)/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
|
|
|
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_TIMER_AND_GDB_INFO_yy = y
|
|
obj-$(CONFIG_CORTEX_M_TIMER) += cortex_m_timer.o
|
|
obj-$(_CORTEX_M_TIMER_AND_GDB_INFO_$(CONFIG_CORTEX_M_TIMER)$(CONFIG_GDB_INFO)) += cortex_m_timer_gdb.o
|