diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 38d08f098..c0cbbd99b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -999,6 +999,10 @@ noinst_PROGRAMS = \ test/run_normalize \ test/software_volume +if HAVE_ID3TAG +noinst_PROGRAMS += test/dump_rva2 +endif + if HAVE_ALSA # this debug program is still ALSA specific noinst_PROGRAMS += test/read_mixer @@ -1116,6 +1120,17 @@ test_read_tags_SOURCES = test/read_tags.c \ src/timer.c \ $(DECODER_SRC) +if HAVE_ID3TAG +test_dump_rva2_LDADD = \ + $(ID3TAG_LIBS) \ + $(GLIB_LIBS) +test_dump_rva2_SOURCES = test/dump_rva2.c \ + src/riff.c src/aiff.c \ + src/tag_handler.c \ + src/tag_id3.c \ + src/tag_rva2.c +endif + test_run_ntp_server_LDADD = \ $(GLIB_LIBS) test_run_ntp_server_SOURCES = test/run_ntp_server.c \ |