diff options
Diffstat (limited to 'sound/pci/emu10k1/Makefile')
-rw-r--r-- | sound/pci/emu10k1/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sound/pci/emu10k1/Makefile b/sound/pci/emu10k1/Makefile new file mode 100644 index 000000000000..e521c38cef45 --- /dev/null +++ b/sound/pci/emu10k1/Makefile | |||
@@ -0,0 +1,23 @@ | |||
1 | # | ||
2 | # Makefile for ALSA | ||
3 | # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> | ||
4 | # | ||
5 | |||
6 | snd-emu10k1-objs := emu10k1.o emu10k1_main.o \ | ||
7 | irq.o memory.o voice.o emumpu401.o emupcm.o io.o \ | ||
8 | emuproc.o emumixer.o emufx.o timer.o p16v.o | ||
9 | snd-emu10k1-synth-objs := emu10k1_synth.o emu10k1_callback.o emu10k1_patch.o | ||
10 | snd-emu10k1x-objs := emu10k1x.o | ||
11 | |||
12 | # | ||
13 | # this function returns: | ||
14 | # "m" - CONFIG_SND_SEQUENCER is m | ||
15 | # <empty string> - CONFIG_SND_SEQUENCER is undefined | ||
16 | # otherwise parameter #1 value | ||
17 | # | ||
18 | sequencer = $(if $(subst y,,$(CONFIG_SND_SEQUENCER)),$(if $(1),m),$(if $(CONFIG_SND_SEQUENCER),$(1))) | ||
19 | |||
20 | # Toplevel Module Dependency | ||
21 | obj-$(CONFIG_SND_EMU10K1) += snd-emu10k1.o | ||
22 | obj-$(call sequencer,$(CONFIG_SND_EMU10K1)) += snd-emu10k1-synth.o | ||
23 | obj-$(CONFIG_SND_EMU10K1X) += snd-emu10k1x.o | ||