diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7316a6539..63029b58f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -120,6 +120,7 @@ mpd_headers = \ src/tag.h \ src/tag_internal.h \ src/tag_pool.h \ + src/tag_ape.h \ src/tag_id3.h \ src/tag_print.h \ src/tag_save.h \ @@ -209,6 +210,7 @@ src_mpd_SOURCES = \ src/tag_pool.c \ src/tag_print.c \ src/tag_save.c \ + src/tag_ape.c \ src/strset.c \ src/uri.c \ src/utils.c \ @@ -509,6 +511,7 @@ if ENABLE_TEST noinst_PROGRAMS = \ test/run_decoder \ + test/read_tags \ test/run_encoder \ test/software_volume @@ -520,7 +523,22 @@ test_run_decoder_LDADD = $(MPD_LIBS) \ $(INPUT_LIBS) $(DECODER_LIBS) test_run_decoder_SOURCES = test/run_decoder.c \ src/conf.c src/buffer2array.c src/utils.c src/log.c \ - src/tag.c src/tag_pool.c src/tag_id3.c \ + src/tag.c src/tag_pool.c \ + src/replay_gain.c \ + src/uri.c \ + $(ARCHIVE_SRC) \ + $(INPUT_SRC) \ + $(DECODER_SRC) + +test_read_tags_CPPFLAGS = $(AM_CPPFLAGS) \ + $(ID3TAG_CFLAGS) \ + $(INPUT_CFLAGS) $(DECODER_CFLAGS) +test_read_tags_LDADD = $(MPD_LIBS) \ + $(ID3TAG_LIBS) \ + $(INPUT_LIBS) $(DECODER_LIBS) +test_read_tags_SOURCES = test/read_tags.c \ + src/conf.c src/buffer2array.c src/utils.c src/log.c \ + src/tag.c src/tag_pool.c src/tag_ape.c \ src/replay_gain.c \ src/uri.c \ $(ARCHIVE_SRC) \ @@ -538,6 +556,12 @@ test_run_encoder_LDADD = $(MPD_LIBS) \ test_software_volume_SOURCES = test/software_volume.c \ src/audio_parser.c \ src/pcm_volume.c + +if HAVE_ID3TAG +test_run_decoder_SOURCES += src/tag_id3.c +test_read_tags_SOURCES += src/tag_id3.c +endif + endif |