blob: 505a8f89601c720ce2471e03f5380a17dcb0e2fc (
plain)
1
2
3
4
5
6
7
|
obj-y := clock.o
obj-$(CONFIG_ARM_TIMER_SP804) += timer-sp.o
# For all but the Integrator, compile these
ifeq ($(CONFIG_ARCH_INTEGRATOR),)
obj-y += sched-clock.o
obj-$(CONFIG_LEDS_CLASS) += leds.o
endif
|