alsa-lib/src/Makefile.am
Jaroslav Kysela bc581b87ae Added snd_config_hook_load_for_all_cards.
Added private_data parameter for snd_config_hooks function.
Fixed the return value mess in the config parser routines.
The include file could begin with 'confdir:' which is replaced with /usr/share/alsa.
The snd_config_search_definitions looks for raw name at first (without suggested root).
Added snd_func_private_card_strtype function.
All configuration files moved to the src/conf directory.
Configuration files modified to use load-on-demand feature using hooks.
2001-06-21 13:41:50 +00:00

40 lines
996 B
Makefile

SUBDIRS=control mixer pcm rawmidi timer hwdep seq instr compat conf
COMPATNUM=@LIBTOOL_VERSION_INFO@
lib_LTLIBRARIES = libasound.la
libasound_la_SOURCES = conf.c confmisc.c input.c output.c async.c error.c
libasound_la_LIBADD = control/libcontrol.la mixer/libmixer.la pcm/libpcm.la \
rawmidi/librawmidi.la timer/libtimer.la \
hwdep/libhwdep.la seq/libseq.la instr/libinstr.la \
compat/libcompat.la -lm -ldl -lpthread
libasound_la_LDFLAGS = -version-info $(COMPATNUM)
control/libcontrol.la:
$(MAKE) -C control libcontrol.la
mixer/libmixer.la:
$(MAKE) -C mixer libmixer.la
pcm/libpcm.la:
$(MAKE) -C pcm libpcm.la
rawmidi/librawmidi.la:
$(MAKE) -C rawmidi librawmidi.la
timer/libtimer.la:
$(MAKE) -C timer libtimer.la
hwdep/libhwdep.la:
$(MAKE) -C hwdep libhwdep.la
seq/libseq.la:
$(MAKE) -C seq libseq.la
instr/libinstr.la:
$(MAKE) -C instr libinstr.la
compat/libcompat.la:
$(MAKE) -C compat libcompat.la
INCLUDES=-I$(top_srcdir)/include