mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 06:35:41 +01:00
a452b98235
This commit adds a new command, 'axfer' ('ALSA transfer'), to transfer data frames described in asound.h. This command is intended to replace current aplay. The most of features and command line parameters come from aplay as much as possible, while it has more better feature and code to maintain. This commit adds an entry point for this command. Current option system of aplay is still available, while this command has a sub-command system like commands in iproute2. Currently, two sub-commands are supported; 'list' and 'transfer'. The 'list' sub-command has the same effect as '-l' and '-L' options of aplay. The 'transfer' sub-command has the same effect as the main feature of aplay. For the sub-command system, an option for stream direction is required; '-P' for playback and '-C' for capture. If you create symbolic links to this binary for aplay/arecord, please execute: $ ln -s axfer aplay $ ln -s axfer arecord Actual code for each sub-command will be implemented in later commits. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
54 lines
1,023 B
Makefile
54 lines
1,023 B
Makefile
AM_CPPFLAGS=-I$(top_srcdir)/include
|
|
|
|
SUBDIRS = include alsactl utils m4 po alsa-info
|
|
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 axfer
|
|
if ALSALOOP
|
|
SUBDIRS += alsaloop
|
|
endif
|
|
if BAT
|
|
SUBDIRS += bat
|
|
endif
|
|
endif
|
|
if HAVE_SEQ
|
|
SUBDIRS += seq
|
|
endif
|
|
if HAVE_UCM
|
|
SUBDIRS += alsaucm
|
|
endif
|
|
if HAVE_TOPOLOGY
|
|
SUBDIRS += topology
|
|
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
|
|
|
|
install-data-hook:
|
|
$(MKDIR_P) -m 0755 $(DESTDIR)$(ASOUND_STATE_DIR)
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
|