brintos

brintos / linux-shallow public Read only

0
0
Text · 2.1 KiB · 18b6730 Raw
84 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for ALSA4# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>5#6 7snd-ad1889-y := ad1889.o8snd-als300-y := als300.o9snd-als4000-y := als4000.o10snd-atiixp-y := atiixp.o11snd-atiixp-modem-y := atiixp_modem.o12snd-azt3328-y := azt3328.o13snd-bt87x-y := bt87x.o14snd-cmipci-y := cmipci.o15snd-cs4281-y := cs4281.o16snd-cs5530-y := cs5530.o17snd-ens1370-y := ens1370.o ak4531_codec.o18snd-ens1371-y := ens1371.o19snd-es1938-y := es1938.o20snd-es1968-y := es1968.o21snd-fm801-y := fm801.o22snd-intel8x0-y := intel8x0.o23snd-intel8x0m-y := intel8x0m.o24snd-maestro3-y := maestro3.o25snd-rme32-y := rme32.o26snd-rme96-y := rme96.o27snd-sis7019-y := sis7019.o28snd-sonicvibes-y := sonicvibes.o29snd-via82xx-y := via82xx.o30snd-via82xx-modem-y := via82xx_modem.o31 32# Toplevel Module Dependency33obj-$(CONFIG_SND_AD1889) += snd-ad1889.o34obj-$(CONFIG_SND_ALS300) += snd-als300.o35obj-$(CONFIG_SND_ALS4000) += snd-als4000.o36obj-$(CONFIG_SND_ATIIXP) += snd-atiixp.o37obj-$(CONFIG_SND_ATIIXP_MODEM) += snd-atiixp-modem.o38obj-$(CONFIG_SND_AZT3328) += snd-azt3328.o39obj-$(CONFIG_SND_BT87X) += snd-bt87x.o40obj-$(CONFIG_SND_CMIPCI) += snd-cmipci.o41obj-$(CONFIG_SND_CS4281) += snd-cs4281.o42obj-$(CONFIG_SND_CS5530) += snd-cs5530.o43obj-$(CONFIG_SND_ENS1370) += snd-ens1370.o44obj-$(CONFIG_SND_ENS1371) += snd-ens1371.o45obj-$(CONFIG_SND_ES1938) += snd-es1938.o46obj-$(CONFIG_SND_ES1968) += snd-es1968.o47obj-$(CONFIG_SND_FM801) += snd-fm801.o48obj-$(CONFIG_SND_INTEL8X0) += snd-intel8x0.o49obj-$(CONFIG_SND_INTEL8X0M) += snd-intel8x0m.o50obj-$(CONFIG_SND_MAESTRO3) += snd-maestro3.o51obj-$(CONFIG_SND_RME32) += snd-rme32.o52obj-$(CONFIG_SND_RME96) += snd-rme96.o53obj-$(CONFIG_SND_SIS7019) += snd-sis7019.o54obj-$(CONFIG_SND_SONICVIBES) += snd-sonicvibes.o55obj-$(CONFIG_SND_VIA82XX) += snd-via82xx.o56obj-$(CONFIG_SND_VIA82XX_MODEM) += snd-via82xx-modem.o57 58obj-$(CONFIG_SND) += \59	ac97/ \60	ali5451/ \61	asihpi/ \62	au88x0/ \63	aw2/ \64	ctxfi/ \65	ca0106/ \66	cs46xx/ \67	cs5535audio/ \68	lola/ \69	lx6464es/ \70	echoaudio/ \71	emu10k1/ \72	hda/ \73	ice1712/ \74	korg1212/ \75	mixart/ \76	nm256/ \77	oxygen/ \78	pcxhr/ \79	riptide/ \80	rme9652/ \81	trident/ \82	ymfpci/ \83	vx222/84