diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 13:28:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 13:28:01 +0200 |
commit | 386c303121a8c53f11cc91c59bbe87f93a503b31 (patch) | |
tree | b239f006ebfbd1f08942109eb2ad2265895a4634 /src/Makefile.am | |
parent | f73319c0489e08e1277b80107729ac1f2ea8e7fd (diff) | |
download | mpd-386c303121a8c53f11cc91c59bbe87f93a503b31.tar.gz mpd-386c303121a8c53f11cc91c59bbe87f93a503b31.tar.xz mpd-386c303121a8c53f11cc91c59bbe87f93a503b31.zip |
tag: moved code to tag_print.c
Move everything which dumps a tag to a file descriptor to tag_print.c.
This relaxes dependencies and splits the code into smaller parts.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index d73030aa7..2c3905414 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -82,8 +82,10 @@ mpd_headers = \ state_file.h \ stats.h \ tag.h \ + tag_internal.h \ tag_pool.h \ tag_id3.h \ + tag_print.h \ tagTracker.h \ utf8.h \ utils.h \ @@ -147,6 +149,7 @@ mpd_SOURCES = \ tag.c \ tag_pool.c \ tag_id3.c \ + tag_print.c \ tagTracker.c \ utils.c \ volume.c \ |