mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08: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>
23 lines
652 B
Makefile
23 lines
652 B
Makefile
# arch/arm/mach-ks8695/Makefile
|
|
#
|
|
# Makefile for KS8695 architecture support
|
|
#
|
|
|
|
obj-y := cpu.o irq.o time.o devices.o
|
|
|
|
# PCI support is optional
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
|
|
# Board-specific support
|
|
obj-$(CONFIG_MACH_KS8695) += board-micrel.o
|
|
obj-$(CONFIG_MACH_DSM320) += board-dsm320.o
|
|
obj-$(CONFIG_MACH_ACS5K) += board-acs5k.o
|
|
obj-$(CONFIG_MACH_LITE300) += board-sg.o
|
|
obj-$(CONFIG_MACH_SG310) += board-sg.o
|
|
obj-$(CONFIG_MACH_SE4200) += board-sg.o
|
|
obj-$(CONFIG_MACH_CM4002) += board-og.o
|
|
obj-$(CONFIG_MACH_CM4008) += board-og.o
|
|
obj-$(CONFIG_MACH_CM41xx) += board-og.o
|
|
obj-$(CONFIG_MACH_IM4004) += board-og.o
|
|
obj-$(CONFIG_MACH_IM42xx) += board-og.o
|