forked from Minki/linux
9295aea1e8
Move the file sound/isa/cs423x/cs4231_lib.c into sound/isa/cs423x/wss_lib.c This is the first step toward merging all libraries for Windows Sound System compatible chips into a single library. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Reviewed-by: Rene Herman <rene.herman@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
16 lines
373 B
Makefile
16 lines
373 B
Makefile
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-cs4236-lib-objs := cs4236_lib.o
|
|
snd-cs4231-objs := cs4231.o
|
|
snd-cs4232-objs := cs4232.o
|
|
snd-cs4236-objs := cs4236.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_CS4231) += snd-cs4231.o
|
|
obj-$(CONFIG_SND_CS4232) += snd-cs4232.o
|
|
obj-$(CONFIG_SND_CS4236) += snd-cs4236.o snd-cs4236-lib.o
|
|
|