mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
3a083227a4
The separate files for clps711x which contain maybe one or two data structures or functions is an inefficient use of files, and encourages further small files as other changes happen. Collapse down these into a single core.c file. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
20 lines
500 B
Makefile
20 lines
500 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := common.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
obj-$(CONFIG_ARCH_CEIVA) += ceiva.o
|
|
obj-$(CONFIG_ARCH_AUTCPU12) += autcpu12.o
|
|
obj-$(CONFIG_ARCH_CDB89712) += cdb89712.o
|
|
obj-$(CONFIG_ARCH_CLEP7312) += clep7312.o
|
|
obj-$(CONFIG_ARCH_EDB7211) += edb7211-arch.o edb7211-mm.o
|
|
obj-$(CONFIG_ARCH_FORTUNET) += fortunet.o
|
|
obj-$(CONFIG_ARCH_P720T) += p720t.o
|
|
leds-$(CONFIG_ARCH_P720T) += p720t-leds.o
|
|
obj-$(CONFIG_LEDS) += $(leds-y)
|