diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-02 12:46:52 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-02 12:46:52 +0000 |
commit | 0adfd8ae76cb669cde111b87ada8481aa9354e6e (patch) | |
tree | b5c6830df92d8525621942440dce73e8bf75b461 /src/Makefile.am | |
parent | ebc4418e01a4c2292462b79283219d1652174d9f (diff) | |
download | mpd-0adfd8ae76cb669cde111b87ada8481aa9354e6e.tar.gz mpd-0adfd8ae76cb669cde111b87ada8481aa9354e6e.tar.xz mpd-0adfd8ae76cb669cde111b87ada8481aa9354e6e.zip |
move audioOutput plugins to audioOutput directory
git-svn-id: https://svn.musicpd.org/mpd/trunk@2470 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2fced704c..b8cb508a8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,11 @@ bin_PROGRAMS = mpd SUBDIRS = $(ID3_SUBDIR) $(MAD_SUBDIR) $(MP4FF_SUBDIR) +mpd_audioOutput = \ + audioOutput/audioOutput_ao.c \ + audioOutput/audioOutput_oss.c \ + audioOutput/audioOutput_shout.c + mpd_inputPlugins = \ inputPlugins/aac_plugin.c \ inputPlugins/audiofile_plugin.c \ @@ -54,12 +59,10 @@ mpd_headers = \ mpd_SOURCES = \ $(mpd_headers) \ + $(mpd_audioOutput) \ $(mpd_inputPlugins) \ audio.c \ audioOutput.c \ - audioOutput_ao.c \ - audioOutput_oss.c \ - audioOutput_shout.c \ buffer2array.c \ charConv.c \ command.c \ |