mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08: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
15 lines
372 B
Makefile
15 lines
372 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 1999 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-mixer-oss-y := mixer_oss.o
|
|
|
|
snd-pcm-oss-y := pcm_oss.o
|
|
snd-pcm-oss-$(CONFIG_SND_PCM_OSS_PLUGINS) += pcm_plugin.o \
|
|
io.o copy.o linear.o mulaw.o route.o rate.o
|
|
|
|
obj-$(CONFIG_SND_MIXER_OSS) += snd-mixer-oss.o
|
|
obj-$(CONFIG_SND_PCM_OSS) += snd-pcm-oss.o
|