https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 8cc5a3a9d31d63470eee193bf3bef4229efabce0 authored by Jason Self on 05 October 2009, 15:38:21 UTC
Linux-libre 2.6.30.9-gnu1
Tip revision: 8cc5a3a
Makefile
#
# Makefile for the linux kernel.
#

# Object file lists.

obj-y			+= irq.o time.o dma.o generic.o clock.o

obj-$(CONFIG_CPU_FREQ_IMX)	+= cpufreq.o

# Specific board support
obj-$(CONFIG_ARCH_MX1ADS) += mx1ads.o

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

obj-$(CONFIG_LEDS)	+=  $(led-y)
led-$(CONFIG_ARCH_MX1ADS) += leds-mx1ads.o
back to top