mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41: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>
9 lines
143 B
Makefile
9 lines
143 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
obj-y := irq.o uart.o
|
|
|
|
obj-$(CONFIG_ARCH_IQ80331) += iq80331.o
|
|
obj-$(CONFIG_MACH_IQ80332) += iq80332.o
|