diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /sound/pci/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'sound/pci/Makefile')
-rw-r--r-- | sound/pci/Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/sound/pci/Makefile b/sound/pci/Makefile new file mode 100644 index 000000000000..b40575c3349a --- /dev/null +++ b/sound/pci/Makefile | |||
@@ -0,0 +1,64 @@ | |||
1 | # | ||
2 | # Makefile for ALSA | ||
3 | # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> | ||
4 | # | ||
5 | |||
6 | snd-als4000-objs := als4000.o | ||
7 | snd-atiixp-objs := atiixp.o | ||
8 | snd-atiixp-modem-objs := atiixp_modem.o | ||
9 | snd-azt3328-objs := azt3328.o | ||
10 | snd-bt87x-objs := bt87x.o | ||
11 | snd-cmipci-objs := cmipci.o | ||
12 | snd-cs4281-objs := cs4281.o | ||
13 | snd-ens1370-objs := ens1370.o | ||
14 | snd-ens1371-objs := ens1371.o | ||
15 | snd-es1938-objs := es1938.o | ||
16 | snd-es1968-objs := es1968.o | ||
17 | snd-fm801-objs := fm801.o | ||
18 | snd-intel8x0-objs := intel8x0.o | ||
19 | snd-intel8x0m-objs := intel8x0m.o | ||
20 | snd-maestro3-objs := maestro3.o | ||
21 | snd-rme32-objs := rme32.o | ||
22 | snd-rme96-objs := rme96.o | ||
23 | snd-sonicvibes-objs := sonicvibes.o | ||
24 | snd-via82xx-objs := via82xx.o | ||
25 | snd-via82xx-modem-objs := via82xx_modem.o | ||
26 | |||
27 | # Toplevel Module Dependency | ||
28 | obj-$(CONFIG_SND_ALS4000) += snd-als4000.o | ||
29 | obj-$(CONFIG_SND_ATIIXP) += snd-atiixp.o | ||
30 | obj-$(CONFIG_SND_ATIIXP_MODEM) += snd-atiixp-modem.o | ||
31 | obj-$(CONFIG_SND_AZT3328) += snd-azt3328.o | ||
32 | obj-$(CONFIG_SND_BT87X) += snd-bt87x.o | ||
33 | obj-$(CONFIG_SND_CMIPCI) += snd-cmipci.o | ||
34 | obj-$(CONFIG_SND_CS4281) += snd-cs4281.o | ||
35 | obj-$(CONFIG_SND_ENS1370) += snd-ens1370.o | ||
36 | obj-$(CONFIG_SND_ENS1371) += snd-ens1371.o | ||
37 | obj-$(CONFIG_SND_ES1938) += snd-es1938.o | ||
38 | obj-$(CONFIG_SND_ES1968) += snd-es1968.o | ||
39 | obj-$(CONFIG_SND_FM801) += snd-fm801.o | ||
40 | obj-$(CONFIG_SND_INTEL8X0) += snd-intel8x0.o | ||
41 | obj-$(CONFIG_SND_INTEL8X0M) += snd-intel8x0m.o | ||
42 | obj-$(CONFIG_SND_MAESTRO3) += snd-maestro3.o | ||
43 | obj-$(CONFIG_SND_RME32) += snd-rme32.o | ||
44 | obj-$(CONFIG_SND_RME96) += snd-rme96.o | ||
45 | obj-$(CONFIG_SND_SONICVIBES) += snd-sonicvibes.o | ||
46 | obj-$(CONFIG_SND_VIA82XX) += snd-via82xx.o | ||
47 | obj-$(CONFIG_SND_VIA82XX_MODEM) += snd-via82xx-modem.o | ||
48 | |||
49 | obj-$(CONFIG_SND) += \ | ||
50 | ac97/ \ | ||
51 | ali5451/ \ | ||
52 | au88x0/ \ | ||
53 | ca0106/ \ | ||
54 | cs46xx/ \ | ||
55 | emu10k1/ \ | ||
56 | hda/ \ | ||
57 | ice1712/ \ | ||
58 | korg1212/ \ | ||
59 | mixart/ \ | ||
60 | nm256/ \ | ||
61 | rme9652/ \ | ||
62 | trident/ \ | ||
63 | ymfpci/ \ | ||
64 | vx222/ | ||