Makefile 435 Bytes
Newer Older
1 2 3 4 5
#
# Makefile for ALSA
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
#

6 7
mod-subdirs  := emux

8 9 10 11 12 13
export-objs  := util_mem.o

snd-util-mem-objs := util_mem.o

# Toplevel Module Dependency
obj-$(CONFIG_SND_EMU10K1) += snd-util-mem.o
14
obj-$(CONFIG_SND_TRIDENT) += snd-util-mem.o
15 16 17 18
ifeq ($(subst m,y,$(CONFIG_SND_SEQUENCER)),y)
  obj-$(CONFIG_SND_SBAWE) += snd-util-mem.o
endif

19
obj-$(CONFIG_SND) += emux/
20

21
include $(TOPDIR)/Rules.make