From 296c1bb3b696b0e57d2d70aedb85cdecd231a787 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Tue, 10 Mar 2009 15:46:55 +0100
Subject: [PATCH] Makefile.am: moved file names to $(OUTPUT_API_SRC)

---
 Makefile.am | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 4eba6d03a..b6d95030d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -150,7 +150,7 @@ src_mpd_SOURCES = \
 	$(INPUT_SRC) \
 	$(DECODER_SRC) \
 	$(ENCODER_SRC) \
-	$(OUTPUT_SRC) \
+	$(OUTPUT_API_SRC) $(OUTPUT_SRC) \
 	$(MIXER_SRC) \
 	src/notify.c \
 	src/audio.c \
@@ -440,7 +440,7 @@ OUTPUT_LIBS = \
 	$(ALSA_LIBS) \
 	$(SHOUT_LIBS)
 
-OUTPUT_SRC = \
+OUTPUT_API_SRC = \
 	src/output_list.c \
 	src/output_all.c \
 	src/output_thread.c \
@@ -448,7 +448,9 @@ OUTPUT_SRC = \
 	src/output_state.c \
 	src/output_print.c \
 	src/output_command.c \
-	src/output_init.c \
+	src/output_init.c
+
+OUTPUT_SRC = \
 	src/output/null_plugin.c
 
 MIXER_SRC = \