mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00: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
30 lines
936 B
Makefile
30 lines
936 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-sb-common-y := sb_common.o sb_mixer.o
|
|
snd-sb8-dsp-y := sb8_main.o sb8_midi.o
|
|
snd-sb16-dsp-y := sb16_main.o
|
|
snd-sb16-csp-y := sb16_csp.o
|
|
snd-sb8-y := sb8.o
|
|
snd-sb16-y := sb16.o
|
|
snd-sbawe-y := sbawe.o emu8000.o
|
|
snd-emu8000-synth-y := emu8000_synth.o emu8000_callback.o emu8000_patch.o emu8000_pcm.o
|
|
snd-jazz16-y := jazz16.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_SB_COMMON) += snd-sb-common.o
|
|
obj-$(CONFIG_SND_SB16_DSP) += snd-sb16-dsp.o
|
|
obj-$(CONFIG_SND_SB8_DSP) += snd-sb8-dsp.o
|
|
obj-$(CONFIG_SND_SB8) += snd-sb8.o
|
|
obj-$(CONFIG_SND_SB16) += snd-sb16.o
|
|
obj-$(CONFIG_SND_SBAWE) += snd-sbawe.o
|
|
obj-$(CONFIG_SND_JAZZ16) += snd-jazz16.o
|
|
ifeq ($(CONFIG_SND_SB16_CSP),y)
|
|
obj-$(CONFIG_SND_SB16) += snd-sb16-csp.o
|
|
obj-$(CONFIG_SND_SBAWE) += snd-sb16-csp.o
|
|
endif
|
|
obj-$(CONFIG_SND_SBAWE_SEQ) += snd-emu8000-synth.o
|