mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
2e7b8fd6d9
*-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-5-tiwai@suse.de
29 lines
865 B
Makefile
29 lines
865 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-adlib-y := adlib.o
|
|
snd-als100-y := als100.o
|
|
snd-azt2320-y := azt2320.o
|
|
snd-cmi8328-y := cmi8328.o
|
|
snd-cmi8330-y := cmi8330.o
|
|
snd-es18xx-y := es18xx.o
|
|
snd-opl3sa2-y := opl3sa2.o
|
|
snd-sc6000-y := sc6000.o
|
|
snd-sscape-y := sscape.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_ADLIB) += snd-adlib.o
|
|
obj-$(CONFIG_SND_ALS100) += snd-als100.o
|
|
obj-$(CONFIG_SND_AZT2320) += snd-azt2320.o
|
|
obj-$(CONFIG_SND_CMI8328) += snd-cmi8328.o
|
|
obj-$(CONFIG_SND_CMI8330) += snd-cmi8330.o
|
|
obj-$(CONFIG_SND_ES18XX) += snd-es18xx.o
|
|
obj-$(CONFIG_SND_OPL3SA2) += snd-opl3sa2.o
|
|
obj-$(CONFIG_SND_SC6000) += snd-sc6000.o
|
|
obj-$(CONFIG_SND_SSCAPE) += snd-sscape.o
|
|
|
|
obj-$(CONFIG_SND) += ad1816a/ ad1848/ cs423x/ es1688/ galaxy/ gus/ msnd/ opti9xx/ \
|
|
sb/ wavefront/ wss/
|