Makefile 460 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#
# Makefile for ALSA
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
#

O_TARGET     := synth.o

subdir-y     := emux
subdir-m     := $(subdir-y)

export-objs  := util_mem.o

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

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

include $(TOPDIR)/Rules.make