alsa-utils/axfer/test/Makefile.am
Takashi Sakamoto 6fdaa0c524 axfer: add missing header file of unit test to distribution
The file 'axfer/test/generator.h' is missing in distribution and brings
FTBFS for unit tests of axfer.

This commit fixes to add it.

Reported-by: Elimar Riesebieter <riesebie@lxtec.de>
Fixes: b878df1ff0: ('axfer: add unit test for container interface')
Fixes: 39d1ab8a0c: ('axfer: add a unit test for mapper interface')
Signed-off-by: Takashi Iwai <tiwai@suse.de>
2019-01-29 16:48:00 +01:00

34 lines
573 B
Makefile

TESTS = \
container-test \
mapper-test
check_PROGRAMS = \
container-test \
mapper-test
container_test_SOURCES = \
../container.h \
../container.c \
../container-riff-wave.c \
../container-au.c \
../container-voc.c \
../container-raw.c \
generator.c \
generator.h \
container-test.c
mapper_test_SOURCES = \
../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 \
generator.c \
generator.h \
mapper-test.c