mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 03:35:42 +01:00
c5b2beebfd
This commit adds a manual for axfer(1). This command is an entry point to supported subcommand. I note that axfer(1) has renewed option system against aplay(1). The command get positional two options for subcommand and direction. In short: $ axfer transfer capture|playback [options for transfer subcommand] $ axfer list capture|playback [options for list subcommand] $ axfer version $ axfer help Manuals to subcommands are added later separately. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
68 lines
978 B
Makefile
68 lines
978 B
Makefile
bin_PROGRAMS = \
|
|
axfer
|
|
|
|
man_MANS = \
|
|
axfer.1
|
|
|
|
# To include headers for gettext and version.
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/include
|
|
|
|
# Unit tests.
|
|
SUBDIRS = \
|
|
test
|
|
|
|
LIBRT = @LIBRT@
|
|
LDADD = \
|
|
$(LIBINTL) \
|
|
$(LIBRT)
|
|
|
|
noinst_HEADERS = \
|
|
misc.h \
|
|
subcmd.h \
|
|
container.h \
|
|
mapper.h \
|
|
xfer.h \
|
|
xfer-libasound.h \
|
|
frame-cache.h
|
|
waiter.h
|
|
|
|
axfer_SOURCES = \
|
|
misc.h \
|
|
subcmd.h \
|
|
main.c \
|
|
subcmd-list.c \
|
|
container.h \
|
|
container.c \
|
|
container-riff-wave.c \
|
|
container-au.c \
|
|
container-voc.c \
|
|
container-raw.c \
|
|
mapper.h \
|
|
mapper.c \
|
|
mapper-single.c \
|
|
mapper-multiple.c \
|
|
xfer.h \
|
|
xfer.c \
|
|
xfer-options.c \
|
|
xfer-libasound.h \
|
|
xfer-libasound.c \
|
|
frame-cache.h \
|
|
frame-cache.c \
|
|
xfer-libasound-irq-rw.c \
|
|
subcmd-transfer.c \
|
|
xfer-libasound-irq-mmap.c \
|
|
waiter.h \
|
|
waiter.c \
|
|
waiter-poll.c \
|
|
waiter-select.c \
|
|
waiter-epoll.c \
|
|
xfer-libasound-timer-mmap.c
|
|
|
|
if HAVE_FFADO
|
|
axfer_SOURCES += xfer-libffado.c
|
|
LDADD += -lffado
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
axfer.1
|