home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / sound / pci / emu10k1 / Makefile
Encoding:
Makefile  |  2006-08-11  |  785 b   |  24 lines

  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
  24.