mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +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>
22 lines
604 B
Makefile
22 lines
604 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := common.o dma.o isa-irq.o
|
|
|
|
pci-y += dc21285.o
|
|
pci-$(CONFIG_ARCH_CATS) += cats-pci.o
|
|
pci-$(CONFIG_ARCH_EBSA285_HOST) += ebsa285-pci.o
|
|
pci-$(CONFIG_ARCH_NETWINDER) += netwinder-pci.o
|
|
pci-$(CONFIG_ARCH_PERSONAL_SERVER) += personal-pci.o
|
|
|
|
obj-$(CONFIG_ARCH_CATS) += cats-hw.o isa-timer.o
|
|
obj-$(CONFIG_ARCH_EBSA285) += ebsa285.o dc21285-timer.o
|
|
obj-$(CONFIG_ARCH_NETWINDER) += netwinder-hw.o isa-timer.o
|
|
obj-$(CONFIG_ARCH_PERSONAL_SERVER) += personal.o dc21285-timer.o
|
|
|
|
obj-$(CONFIG_PCI) +=$(pci-y)
|
|
|
|
obj-$(CONFIG_ISA) += isa.o isa-rtc.o
|