mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
3983f7b9e3
*-objs suffix is reserved rather for (user-space) host programs while usually *-y suffix is used for kernel drivers (although *-objs works for that purpose for now). Let's correct the old usages of *-objs in Makefiles. Signed-off-by: Takashi Iwai <tiwai@suse.de> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Jaroslav Kysela <perex@perex.cz> Link: https://lore.kernel.org/r/20240507135513.14919-2-tiwai@suse.de
20 lines
562 B
Makefile
20 lines
562 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the Linux sound card driver
|
|
#
|
|
|
|
obj-$(CONFIG_SOUND) += soundcore.o
|
|
obj-$(CONFIG_DMASOUND) += oss/dmasound/
|
|
obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ sh/ synth/ usb/ \
|
|
firewire/ sparc/ spi/ parisc/ pcmcia/ mips/ soc/ atmel/ hda/ x86/ xen/ \
|
|
virtio/
|
|
obj-$(CONFIG_SND_AOA) += aoa/
|
|
|
|
# This one must be compilable even if sound is configured out
|
|
obj-$(CONFIG_AC97_BUS) += ac97_bus.o
|
|
obj-$(CONFIG_AC97_BUS_NEW) += ac97/
|
|
|
|
ifeq ($(CONFIG_SND),y)
|
|
obj-y += last.o
|
|
endif
|
|
|
|
soundcore-y := sound_core.o
|