15 lines
326 B
Makefile
15 lines
326 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := system.o generic.o devices.o serial.o
|
|
|
|
obj-$(CONFIG_MACH_MX27) += cpu_imx27.o
|
|
obj-$(CONFIG_MACH_MX27) += clock_imx27.o
|
|
|
|
obj-$(CONFIG_MACH_MX27ADS) += mx27ads.o
|
|
obj-$(CONFIG_MACH_PCM038) += pcm038.o
|
|
obj-$(CONFIG_MACH_PCM970_BASEBOARD) += pcm970-baseboard.o
|