mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 20:05:42 +01:00
1e75673035
alsaloop allows create a PCM loopback between a PCM capture device and a PCM playback device. alsaloop supports multiple soundcards, adaptive clock synchronization, adaptive rate resampling using the samplerate library (if available in the system). Also, mixer controls can be redirected from one card to another (for example Master and PCM). Signed-off-by: Jaroslav Kysela <perex@perex.cz>
39 lines
717 B
Makefile
39 lines
717 B
Makefile
INCLUDES=-I$(top_srcdir)/include
|
|
|
|
SUBDIRS = include alsactl utils m4 po
|
|
if ALSAMIXER
|
|
SUBDIRS += alsamixer
|
|
endif
|
|
if HAVE_MIXER
|
|
SUBDIRS += amixer
|
|
endif
|
|
if HAVE_RAWMIDI
|
|
SUBDIRS += amidi
|
|
endif
|
|
if ALSACONF
|
|
SUBDIRS += alsaconf
|
|
endif
|
|
if HAVE_PCM
|
|
SUBDIRS += aplay iecset speaker-test
|
|
if ALSALOOP
|
|
SUBDIRS += alsaloop
|
|
endif
|
|
endif
|
|
if HAVE_SEQ
|
|
SUBDIRS += seq
|
|
endif
|
|
|
|
EXTRA_DIST= TODO gitcompile
|
|
AUTOMAKE_OPTIONS=foreign
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
rpm: dist
|
|
$(MAKE) -C $@
|
|
|
|
dist-hook:
|
|
-chmod -R a+r $(distdir)
|
|
@if ! test -z "$(AMTAR)"; then \
|
|
$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
|
|
else \
|
|
$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
|
|
fi
|