mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 09:37:03 +07: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>
41 lines
951 B
Makefile
41 lines
951 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := clock.o generic.o irq.o time.o #nmi-oopser.o
|
|
|
|
# Specific board support
|
|
obj-$(CONFIG_SA1100_ASSABET) += assabet.o
|
|
obj-$(CONFIG_ASSABET_NEPONSET) += neponset.o
|
|
|
|
obj-$(CONFIG_SA1100_BADGE4) += badge4.o
|
|
|
|
obj-$(CONFIG_SA1100_CERF) += cerf.o
|
|
|
|
obj-$(CONFIG_SA1100_COLLIE) += collie.o
|
|
|
|
obj-$(CONFIG_SA1100_H3100) += h3100.o h3xxx.o
|
|
obj-$(CONFIG_SA1100_H3600) += h3600.o h3xxx.o
|
|
|
|
obj-$(CONFIG_SA1100_HACKKIT) += hackkit.o
|
|
|
|
obj-$(CONFIG_SA1100_JORNADA720) += jornada720.o
|
|
obj-$(CONFIG_SA1100_JORNADA720_SSP) += jornada720_ssp.o
|
|
|
|
obj-$(CONFIG_SA1100_LART) += lart.o
|
|
|
|
obj-$(CONFIG_SA1100_NANOENGINE) += nanoengine.o
|
|
obj-$(CONFIG_PCI_NANOENGINE) += pci-nanoengine.o
|
|
|
|
obj-$(CONFIG_SA1100_PLEB) += pleb.o
|
|
|
|
obj-$(CONFIG_SA1100_SHANNON) += shannon.o
|
|
|
|
obj-$(CONFIG_SA1100_SIMPAD) += simpad.o
|
|
|
|
# Miscellaneous functions
|
|
obj-$(CONFIG_PM) += pm.o sleep.o
|
|
obj-$(CONFIG_SA1100_SSP) += ssp.o
|
|
|