diff options
author | Max Kellermann <max@duempel.org> | 2009-04-13 19:18:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-04-13 19:18:10 +0200 |
commit | 99a88988d57d5da5888eb1b82479a8600be6df2f (patch) | |
tree | 3724183e7100b4f720d3da7a332adb780fb31555 /Makefile.am | |
parent | e18d67338b94831271672e174f8b1091be510eb5 (diff) | |
download | mpd-99a88988d57d5da5888eb1b82479a8600be6df2f.tar.gz mpd-99a88988d57d5da5888eb1b82479a8600be6df2f.tar.xz mpd-99a88988d57d5da5888eb1b82479a8600be6df2f.zip |
test: added run_input test program
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4f472ba3b..351ad5d64 100644 --- a/Makefile.am +++ b/Makefile.am @@ -577,6 +577,7 @@ if ENABLE_TEST noinst_PROGRAMS = \ test/read_conf \ + test/run_input \ test/run_decoder \ test/read_tags \ test/run_encoder \ @@ -590,6 +591,17 @@ test_read_conf_LDADD = $(MPD_LIBS) \ test_read_conf_SOURCES = test/read_conf.c \ src/conf.c src/buffer2array.c src/utils.c +test_run_input_CPPFLAGS = $(AM_CPPFLAGS) \ + $(INPUT_CFLAGS) +test_run_input_LDADD = $(MPD_LIBS) \ + $(INPUT_LIBS) \ + $(GLIB_LIBS) +test_run_input_SOURCES = test/run_input.c \ + src/conf.c src/buffer2array.c src/utils.c \ + src/tag.c src/tag_pool.c src/tag_save.c \ + $(ARCHIVE_SRC) \ + $(INPUT_SRC) + test_run_decoder_CPPFLAGS = $(AM_CPPFLAGS) \ $(ID3TAG_CFLAGS) \ $(INPUT_CFLAGS) $(DECODER_CFLAGS) |