mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 03:05:43 +01:00
72800ad6bd
Add support for standalone mode where alsabat will run on a different machine to the one being tested. In standalone mode, the alsabat just generates, playback and capture sound data like in normal mode, but does not analyze. The alsabat being built without libfftw3 support is always work in standalone mode. The alsabat in normal mode can also bypass data analysis using option "--standalone". Signed-off-by: Lu, Han <han.lu@intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
27 lines
375 B
Makefile
27 lines
375 B
Makefile
bin_PROGRAMS = alsabat
|
|
man_MANS = alsabat.1
|
|
|
|
EXTRA_DIST = alsabat.1
|
|
|
|
alsabat_SOURCES = \
|
|
bat.c \
|
|
common.c \
|
|
signal.c \
|
|
convert.c \
|
|
alsa.c
|
|
|
|
noinst_HEADERS = \
|
|
common.h \
|
|
bat-signal.h \
|
|
alsa.h \
|
|
convert.h
|
|
|
|
if HAVE_LIBFFTW3
|
|
alsabat_SOURCES += analyze.c
|
|
noinst_HEADERS += analyze.h
|
|
endif
|
|
|
|
AM_CPPFLAGS = \
|
|
-Wall -I$(top_srcdir)/include
|
|
|
|
alsabat_LDADD = @FFTW_LIB@
|