mirror of
https://github.com/torvalds/linux.git
synced 2024-12-22 02:52:56 +00:00
ad8decb7f5
This is one of Sound Blaster Pro compatible chipsets which is supported by Linux OSS driver and was missing native supoort for ALSA. The Jazz16 audio codec is Crystal CS4216 which is capable of playback and recording up to 48 kHz stereo. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Takashi Iwai <tiwai@suse.de>
31 lines
993 B
Makefile
31 lines
993 B
Makefile
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-sb-common-objs := sb_common.o sb_mixer.o
|
|
snd-sb8-dsp-objs := sb8_main.o sb8_midi.o
|
|
snd-sb16-dsp-objs := sb16_main.o
|
|
snd-sb16-csp-objs := sb16_csp.o
|
|
snd-sb8-objs := sb8.o
|
|
snd-sb16-objs := sb16.o
|
|
snd-sbawe-objs := sbawe.o emu8000.o
|
|
snd-emu8000-synth-objs := emu8000_synth.o emu8000_callback.o emu8000_patch.o emu8000_pcm.o
|
|
snd-es968-objs := es968.o
|
|
snd-jazz16-objs := 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_ES968) += snd-es968.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
|