diff options
author | Max Kellermann <max@duempel.org> | 2009-01-22 23:40:11 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-22 23:40:11 +0100 |
commit | f78cddb407dbd8c3f5a1860ca5052d6a5984b734 (patch) | |
tree | f859388102e3fabea31ae5c3567fb04b5188d7f4 /src/Makefile.am | |
parent | d5dcd0ed668781b311375715f761f67c07442291 (diff) | |
download | mpd-f78cddb407dbd8c3f5a1860ca5052d6a5984b734.tar.gz mpd-f78cddb407dbd8c3f5a1860ca5052d6a5984b734.tar.xz mpd-f78cddb407dbd8c3f5a1860ca5052d6a5984b734.zip |
playlist: moved code to queue.c
Attempt to untie the playlist.c knot: moved the playlist storage code
to queue.c, struct queue.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index b1ebe1320..704e2a6a0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -92,6 +92,7 @@ mpd_headers = \ player_control.h \ playlist.h \ playlist_save.h \ + queue.h \ replay_gain.h \ sig_handlers.h \ song.h \ @@ -175,6 +176,7 @@ mpd_SOURCES = \ player_control.c \ playlist.c \ playlist_save.c \ + queue.c \ replay_gain.c \ sig_handlers.c \ song.c \ |