alsa-utils/bat/Makefile.am
Lu, Han 72800ad6bd alsabat: add standalone mode
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>
2016-03-15 09:59:26 +01:00

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@