
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).

# Object file lists.

ifndef CONFIG_XENOLINUX
obj-y			+= irq.o time.o dma.o generic.o
else
obj-y                   += irq-xen.o time-xen.o generic.o
endif

# Specific board support
obj-$(CONFIG_MACH_MX1ADS) += mx1ads.o
obj-$(CONFIG_MACH_MX2ADS) += mx2ads-xen.o

# Support for blinky lights
led-y := leds.o

obj-$(CONFIG_LEDS)	+=  $(led-y)
led-$(CONFIG_MACH_MX1ADS) += leds-mx1ads.o
