29 lines
572 B
Makefile
29 lines
572 B
Makefile
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
obj-y :=
|
|
led-y := leds.o
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# S3C6410 support files
|
|
obj-$(CONFIG_CPU_S3C6410) += s3c6410.o clock.o irq.o dma.o
|
|
obj-$(CONFIG_S3C64XX_DMA_SYSFS) += dma-sysfs.o
|
|
obj-$(CONFIG_S3C6410_PM) += pm.o
|
|
|
|
|
|
# Power Management support
|
|
obj-$(CONFIG_S3C6410_PDFW) += pd.o pd-s3c6410.o
|
|
obj-$(CONFIG_S3C6410_KDPMD) += kdpmd.o
|
|
|
|
# smdk6410 machine specific support
|
|
obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o
|
|
|
|
# LEDs support
|
|
led-$(CONFIG_MACH_SMDK6410) += leds-s3c6410.o
|
|
obj-$(CONFIG_LEDS) += $(led-y)
|
|
|