aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-09 15:23:37 +0200
committerEric Wong <normalperson@yhbt.net>2008-10-11 19:21:49 -0700
commita24d3738e35d509aa180fffa127abac8057101cf (patch)
treee2f3738f9e0a21308d6092932662a2a559cdd8ca /src/Makefile.am
parentd296861ea05101450b3f3147f6cfcd134486a384 (diff)
downloadmpd-a24d3738e35d509aa180fffa127abac8057101cf.tar.gz
mpd-a24d3738e35d509aa180fffa127abac8057101cf.tar.xz
mpd-a24d3738e35d509aa180fffa127abac8057101cf.zip
diretory: moved code to directory_save.c, directory_print.c
Remove clutter from directory.c. Everything which saves or loads to/from the hard disk goes to directory_save.c, and code which sends directory information to the client is moved into directory_print.c.
Diffstat (limited to '')
-rw-r--r--src/Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index e4cc17c3f..6a7497286 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -43,6 +43,8 @@ mpd_headers = \
dbUtils.h \
decode.h \
directory.h \
+ directory_print.h \
+ directory_save.h \
update.h \
dirvec.h \
gcc.h \
@@ -116,6 +118,8 @@ mpd_SOURCES = \
dbUtils.c \
decode.c \
directory.c \
+ directory_print.c \
+ directory_save.c \
dirvec.c \
update.c \
inputPlugin.c \