mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
ac84eb47cc
Clearing obj-y, obj-m, obj-n, obj- in each Makefile is a useless habit. They are non-exported variables; therefore they are always empty whenever descending into each subdirectory. (Moreorver, obj-y and obj-m are also set to empty at the beginning of scripts/Makefile.build) Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Peter Foley <pefoley2@pefoley.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Michal Marek <mmarek@suse.cz>
19 lines
533 B
Makefile
19 lines
533 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
obj-y := core.o clock.o
|
|
|
|
obj-$(CONFIG_EP93XX_DMA) += dma.o
|
|
|
|
obj-$(CONFIG_CRUNCH) += crunch.o crunch-bits.o
|
|
AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312
|
|
|
|
obj-$(CONFIG_MACH_ADSSPHERE) += adssphere.o
|
|
obj-$(CONFIG_MACH_EDB93XX) += edb93xx.o
|
|
obj-$(CONFIG_MACH_GESBC9312) += gesbc9312.o
|
|
obj-$(CONFIG_MACH_MICRO9) += micro9.o
|
|
obj-$(CONFIG_MACH_SIM_ONE) += simone.o
|
|
obj-$(CONFIG_MACH_SNAPPER_CL15) += snappercl15.o
|
|
obj-$(CONFIG_MACH_TS72XX) += ts72xx.o
|
|
obj-$(CONFIG_MACH_VISION_EP9307)+= vision_ep9307.o
|