mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:25:43 +01:00
6fdaa0c524
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>
33 lines
573 B
Makefile
33 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
|