Makefile 558 Bytes
Newer Older
1 2 3 4 5 6
#
# Makefile for the linux kernel.
#

# Common support (must be linked before board specific support)
obj-y += generic.o irq.o dma.o
7 8
obj-$(CONFIG_PXA25x) += pxa25x.o
obj-$(CONFIG_PXA27x) += pxa27x.o
9 10 11

# Specific board support
obj-$(CONFIG_ARCH_LUBBOCK) += lubbock.o
12
obj-$(CONFIG_MACH_MAINSTONE) += mainstone.o
13 14 15
obj-$(CONFIG_ARCH_PXA_IDP) += idp.o

# Support for blinky lights
16 17 18
led-y := leds.o
led-$(CONFIG_ARCH_LUBBOCK) += leds-lubbock.o
led-$(CONFIG_ARCH_PXA_IDP) += leds-idp.o
19

20
obj-$(CONFIG_LEDS) += $(led-y)
21

22 23
# Misc features
obj-$(CONFIG_PM) += pm.o sleep.o