diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 10:48:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 10:48:48 +0200 |
commit | 7b9bed8398137e90538908a24467633029b1c307 (patch) | |
tree | be142d5e64ba61acae701dcf5e459e067ab6f166 /src/Makefile.am | |
parent | 4cfd356e1266ccf4ebb4082ca62e978dc827adc0 (diff) | |
download | mpd-7b9bed8398137e90538908a24467633029b1c307.tar.gz mpd-7b9bed8398137e90538908a24467633029b1c307.tar.xz mpd-7b9bed8398137e90538908a24467633029b1c307.zip |
directory: moved code to update.c
The source directory.c mixes several libraries: directory object
management, database management and database update, resulting in a
1000+ line monster. Move the whole database update code to update.c.
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 4f7828d38..0beeb07a2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -54,6 +54,7 @@ mpd_headers = \ decoder_api.h \ decoder_internal.h \ directory.h \ + update.h \ dirvec.h \ gcc.h \ decoder_list.h \ @@ -133,6 +134,7 @@ mpd_SOURCES = \ decoder_api.c \ directory.c \ dirvec.c \ + update.c \ decoder_list.c \ inputStream.c \ inputStream_file.c \ |