1503 lines
36 KiB
Makefile
1503 lines
36 KiB
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
AUTOMAKE_OPTIONS = foreign 1.11 dist-bzip2 subdir-objects
|
|
|
|
AM_CPPFLAGS += -I$(srcdir)/src $(GLIB_CFLAGS)
|
|
|
|
AM_CPPFLAGS += -DSYSTEM_CONFIG_FILE_LOCATION='"$(sysconfdir)/mpd.conf"'
|
|
|
|
bin_PROGRAMS = src/mpd
|
|
|
|
noinst_LIBRARIES = \
|
|
libutil.a \
|
|
libevent.a \
|
|
libpcm.a \
|
|
libconf.a \
|
|
libtag.a \
|
|
libinput.a \
|
|
libfs.a \
|
|
libdb_plugins.a \
|
|
libplaylist_plugins.a \
|
|
libdecoder_plugins.a \
|
|
libfilter_plugins.a \
|
|
libmixer_plugins.a \
|
|
liboutput_plugins.a
|
|
|
|
src_mpd_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(LIBMPDCLIENT_CFLAGS) \
|
|
$(AVAHI_CFLAGS) \
|
|
$(LIBWRAP_CFLAGS) \
|
|
$(SQLITE_CFLAGS)
|
|
src_mpd_LDADD = \
|
|
$(DB_LIBS) \
|
|
$(PLAYLIST_LIBS) \
|
|
$(AVAHI_LIBS) \
|
|
$(LIBWRAP_LDFLAGS) \
|
|
$(SQLITE_LIBS) \
|
|
$(DECODER_LIBS) \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
$(TAG_LIBS) \
|
|
$(OUTPUT_LIBS) \
|
|
$(FILTER_LIBS) \
|
|
$(ENCODER_LIBS) \
|
|
$(MIXER_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libutil.a \
|
|
libfs.a \
|
|
$(SYSTEMD_DAEMON_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
mpd_headers = \
|
|
src/check.h \
|
|
src/ack.h \
|
|
src/ape.h \
|
|
src/audio_format.h \
|
|
src/audio_check.h \
|
|
src/output_internal.h \
|
|
src/output_api.h \
|
|
src/filter_internal.h \
|
|
src/filter_plugin.h \
|
|
src/filter_registry.h \
|
|
src/filter/autoconvert_filter_plugin.h \
|
|
src/filter/chain_filter_plugin.h \
|
|
src/filter/convert_filter_plugin.h \
|
|
src/filter/volume_filter_plugin.h \
|
|
src/command.h \
|
|
src/conf.h \
|
|
src/decoder_plugin.h \
|
|
src/decoder_command.h \
|
|
src/decoder_buffer.h \
|
|
src/decoder_api.h \
|
|
src/decoder_plugin.h \
|
|
src/encoder_plugin.h \
|
|
src/encoder_list.h \
|
|
src/encoder_api.h \
|
|
src/fd_util.h \
|
|
src/gerror.h \
|
|
src/glib_compat.h \
|
|
src/gcc.h \
|
|
src/decoder/pcm_decoder_plugin.h \
|
|
src/input_stream.h \
|
|
src/text_input_stream.h \
|
|
src/ls.h \
|
|
src/mixer_api.h \
|
|
src/mixer_control.h \
|
|
src/mixer_list.h \
|
|
src/mixer_plugin.h \
|
|
src/mixer_type.h \
|
|
src/mixer/software_mixer_plugin.h \
|
|
src/daemon.h \
|
|
src/AudioCompress/config.h \
|
|
src/AudioCompress/compress.h \
|
|
src/open.h \
|
|
src/Playlist.hxx \
|
|
src/playlist_error.h \
|
|
src/poison.h \
|
|
src/riff.h \
|
|
src/aiff.h \
|
|
src/replay_gain_config.h \
|
|
src/replay_gain_info.h \
|
|
src/replay_gain_ape.h \
|
|
src/TimePrint.cxx src/TimePrint.hxx \
|
|
src/song.h \
|
|
src/song_sort.c src/song_sort.h \
|
|
src/stats.h \
|
|
src/tag.h \
|
|
src/tag_internal.h \
|
|
src/tag_table.h \
|
|
src/tag_ape.h \
|
|
src/tag_id3.h \
|
|
src/tag_rva2.h \
|
|
src/tokenizer.h \
|
|
src/uri.h \
|
|
src/utils.h \
|
|
src/string_util.h \
|
|
src/timer.h \
|
|
src/mpd_error.h
|
|
|
|
src_mpd_SOURCES = \
|
|
$(mpd_headers) \
|
|
$(DECODER_SRC) \
|
|
$(OUTPUT_API_SRC) \
|
|
$(MIXER_API_SRC) \
|
|
src/thread/Mutex.hxx \
|
|
src/thread/PosixMutex.hxx \
|
|
src/thread/CriticalSection.hxx \
|
|
src/thread/GLibMutex.hxx \
|
|
src/thread/Cond.hxx \
|
|
src/thread/PosixCond.hxx \
|
|
src/thread/WindowsCond.hxx \
|
|
src/thread/GLibCond.hxx \
|
|
src/clock.c src/clock.h \
|
|
src/notify.cxx src/notify.hxx \
|
|
src/AudioConfig.cxx src/AudioConfig.hxx \
|
|
src/audio_check.c \
|
|
src/audio_format.c \
|
|
src/AudioParser.cxx src/AudioParser.hxx \
|
|
src/protocol/ArgParser.cxx src/protocol/ArgParser.hxx \
|
|
src/protocol/Result.cxx src/protocol/Result.hxx \
|
|
src/CommandError.cxx src/CommandError.hxx \
|
|
src/AllCommands.cxx src/AllCommands.hxx \
|
|
src/QueueCommands.cxx src/QueueCommands.hxx \
|
|
src/PlayerCommands.cxx src/PlayerCommands.hxx \
|
|
src/PlaylistCommands.cxx src/PlaylistCommands.hxx \
|
|
src/DatabaseCommands.cxx src/DatabaseCommands.hxx \
|
|
src/OutputCommands.cxx src/OutputCommands.hxx \
|
|
src/MessageCommands.cxx src/MessageCommands.hxx \
|
|
src/OtherCommands.cxx src/OtherCommands.hxx \
|
|
src/Idle.cxx src/Idle.hxx \
|
|
src/CommandLine.cxx src/CommandLine.hxx \
|
|
src/CrossFade.cxx src/CrossFade.hxx \
|
|
src/cue/cue_parser.c src/cue/cue_parser.h \
|
|
src/decoder_error.h \
|
|
src/DecoderThread.cxx src/DecoderThread.hxx \
|
|
src/DecoderControl.cxx src/DecoderControl.hxx \
|
|
src/DecoderAPI.cxx \
|
|
src/DecoderInternal.cxx src/DecoderInternal.hxx \
|
|
src/DecoderPrint.cxx src/DecoderPrint.hxx \
|
|
src/Directory.cxx src/Directory.hxx \
|
|
src/DirectorySave.cxx src/DirectorySave.hxx \
|
|
src/DatabaseSimple.hxx \
|
|
src/DatabaseGlue.cxx src/DatabaseGlue.hxx \
|
|
src/DatabasePrint.cxx src/DatabasePrint.hxx \
|
|
src/DatabaseQueue.cxx src/DatabaseQueue.hxx \
|
|
src/DatabasePlaylist.cxx src/DatabasePlaylist.hxx \
|
|
src/db_error.h \
|
|
src/DatabaseLock.cxx src/DatabaseLock.hxx \
|
|
src/DatabaseSave.cxx src/DatabaseSave.hxx \
|
|
src/DatabasePlugin.hxx \
|
|
src/DatabaseVisitor.hxx \
|
|
src/DatabaseSelection.cxx src/DatabaseSelection.hxx \
|
|
src/ExcludeList.cxx src/ExcludeList.hxx \
|
|
src/fd_util.c \
|
|
src/FilterConfig.cxx src/FilterConfig.hxx \
|
|
src/filter_plugin.c \
|
|
src/filter_registry.c \
|
|
src/UpdateGlue.cxx src/UpdateGlue.hxx \
|
|
src/UpdateQueue.cxx src/UpdateQueue.hxx \
|
|
src/UpdateIO.cxx src/UpdateIO.hxx \
|
|
src/UpdateDatabase.cxx src/UpdateDatabase.hxx \
|
|
src/UpdateWalk.cxx src/UpdateWalk.hxx \
|
|
src/UpdateSong.cxx src/UpdateSong.hxx \
|
|
src/UpdateContainer.cxx src/UpdateContainer.hxx \
|
|
src/UpdateInternal.hxx \
|
|
src/UpdateRemove.cxx src/UpdateRemove.hxx \
|
|
src/CommandListBuilder.cxx src/CommandListBuilder.hxx \
|
|
src/Client.cxx src/Client.hxx \
|
|
src/ClientInternal.hxx \
|
|
src/ClientEvent.cxx \
|
|
src/ClientExpire.cxx \
|
|
src/ClientGlobal.cxx \
|
|
src/ClientIdle.cxx \
|
|
src/ClientList.cxx src/ClientList.hxx \
|
|
src/ClientNew.cxx \
|
|
src/ClientProcess.cxx \
|
|
src/ClientRead.cxx \
|
|
src/ClientWrite.cxx \
|
|
src/ClientMessage.cxx src/ClientMessage.hxx \
|
|
src/ClientSubscribe.cxx src/ClientSubscribe.hxx \
|
|
src/ClientFile.cxx src/ClientFile.hxx \
|
|
src/Listen.cxx src/Listen.hxx \
|
|
src/Log.cxx src/Log.hxx \
|
|
src/ls.cxx \
|
|
src/SocketError.hxx \
|
|
src/io_error.h \
|
|
src/IOThread.cxx src/IOThread.hxx \
|
|
src/Main.cxx src/Main.hxx \
|
|
src/Win32Main.cxx \
|
|
src/GlobalEvents.cxx src/GlobalEvents.hxx \
|
|
src/daemon.c \
|
|
src/AudioCompress/compress.c \
|
|
src/MusicBuffer.cxx src/MusicBuffer.hxx \
|
|
src/MusicPipe.cxx src/MusicPipe.hxx \
|
|
src/MusicChunk.cxx src/MusicChunk.hxx \
|
|
src/Mapper.cxx src/Mapper.hxx \
|
|
src/Page.cxx src/Page.hxx \
|
|
src/Partition.hxx \
|
|
src/Permission.cxx src/Permission.hxx \
|
|
src/PlayerThread.cxx src/PlayerThread.hxx \
|
|
src/PlayerControl.cxx src/PlayerControl.hxx \
|
|
src/Playlist.cxx \
|
|
src/PlaylistGlobal.cxx src/PlaylistGlobal.hxx \
|
|
src/PlaylistControl.cxx \
|
|
src/PlaylistEdit.cxx \
|
|
src/PlaylistPrint.cxx src/PlaylistPrint.hxx \
|
|
src/PlaylistSave.cxx src/PlaylistSave.hxx \
|
|
src/PlaylistMapper.cxx src/PlaylistMapper.hxx \
|
|
src/PlaylistAny.cxx src/PlaylistAny.hxx \
|
|
src/PlaylistSong.cxx src/PlaylistSong.hxx \
|
|
src/PlaylistState.cxx src/PlaylistState.hxx \
|
|
src/PlaylistQueue.cxx src/PlaylistQueue.hxx \
|
|
src/PlaylistVector.cxx src/PlaylistVector.hxx \
|
|
src/PlaylistInfo.hxx \
|
|
src/PlaylistDatabase.cxx \
|
|
src/IdTable.hxx \
|
|
src/Queue.cxx src/Queue.hxx \
|
|
src/QueuePrint.cxx src/QueuePrint.hxx \
|
|
src/QueueSave.cxx src/QueueSave.hxx \
|
|
src/ReplayGainConfig.cxx \
|
|
src/ReplayGainInfo.cxx \
|
|
src/SignalHandlers.cxx src/SignalHandlers.hxx \
|
|
src/Song.cxx \
|
|
src/SongUpdate.cxx \
|
|
src/SongPrint.cxx src/SongPrint.hxx \
|
|
src/SongSave.cxx src/SongSave.hxx \
|
|
src/resolver.c src/resolver.h \
|
|
src/SocketUtil.cxx src/SocketUtil.hxx \
|
|
src/StateFile.cxx src/StateFile.hxx \
|
|
src/Stats.cxx \
|
|
src/Tag.cxx \
|
|
src/TagNames.c \
|
|
src/TagPool.cxx src/TagPool.hxx \
|
|
src/TagPrint.cxx src/TagPrint.hxx \
|
|
src/TagSave.cxx src/TagSave.hxx \
|
|
src/tag_handler.c src/tag_handler.h \
|
|
src/TagFile.cxx src/TagFile.hxx \
|
|
src/tokenizer.c \
|
|
src/TextFile.cxx src/TextFile.hxx \
|
|
src/text_input_stream.c \
|
|
src/uri.c \
|
|
src/utils.c \
|
|
src/string_util.c \
|
|
src/Volume.cxx src/Volume.hxx \
|
|
src/SongFilter.cxx src/SongFilter.hxx \
|
|
src/SongPointer.hxx \
|
|
src/PlaylistFile.cxx src/PlaylistFile.hxx \
|
|
src/timer.c
|
|
|
|
#
|
|
# Windows resource file
|
|
#
|
|
|
|
src/win/mpd_win32_rc.$(OBJEXT): src/win/mpd_win32_rc.rc
|
|
$(WINDRES) -i $< -o $@
|
|
|
|
if HAVE_WINDOWS
|
|
noinst_DATA = src/win/mpd_win32_rc.rc
|
|
|
|
src_mpd_DEPENDENCIES = src/win/mpd_win32_rc.$(OBJEXT)
|
|
src_mpd_LDFLAGS = -Wl,src/win/mpd_win32_rc.$(OBJEXT)
|
|
endif
|
|
|
|
if ENABLE_DESPOTIFY
|
|
src_mpd_SOURCES += \
|
|
src/DespotifyUtils.cxx src/DespotifyUtils.hxx
|
|
endif
|
|
|
|
if ENABLE_INOTIFY
|
|
src_mpd_SOURCES += \
|
|
src/InotifySource.cxx src/InotifySource.hxx \
|
|
src/InotifyQueue.cxx src/InotifyQueue.hxx \
|
|
src/InotifyUpdate.cxx src/InotifyUpdate.hxx
|
|
endif
|
|
|
|
if ENABLE_SQLITE
|
|
src_mpd_SOURCES += \
|
|
src/StickerCommands.cxx src/StickerCommands.hxx \
|
|
src/StickerDatabase.cxx src/StickerDatabase.hxx \
|
|
src/StickerPrint.cxx src/StickerPrint.hxx \
|
|
src/SongSticker.cxx src/SongSticker.hxx
|
|
endif
|
|
|
|
# Generic utility library
|
|
|
|
libutil_a_SOURCES = \
|
|
src/util/RefCount.hxx \
|
|
src/util/fifo_buffer.c src/util/fifo_buffer.h \
|
|
src/util/growing_fifo.c src/util/growing_fifo.h \
|
|
src/util/LazyRandomEngine.cxx src/util/LazyRandomEngine.hxx \
|
|
src/util/SliceBuffer.hxx \
|
|
src/util/HugeAllocator.cxx src/util/HugeAllocator.hxx \
|
|
src/util/PeakBuffer.cxx src/util/PeakBuffer.hxx \
|
|
src/util/list.h \
|
|
src/util/list_sort.c src/util/list_sort.h \
|
|
src/util/byte_reverse.c src/util/byte_reverse.h \
|
|
src/util/bit_reverse.c src/util/bit_reverse.h
|
|
|
|
# Event loop library
|
|
|
|
libevent_a_SOURCES = \
|
|
src/event/WakeFD.cxx src/event/WakeFD.hxx \
|
|
src/event/TimeoutMonitor.hxx src/event/TimeoutMonitor.cxx \
|
|
src/event/SocketMonitor.cxx src/event/SocketMonitor.hxx \
|
|
src/event/BufferedSocket.cxx src/event/BufferedSocket.hxx \
|
|
src/event/FullyBufferedSocket.cxx src/event/FullyBufferedSocket.hxx \
|
|
src/event/MultiSocketMonitor.cxx src/event/MultiSocketMonitor.hxx \
|
|
src/event/ServerSocket.cxx src/event/ServerSocket.hxx \
|
|
src/event/Loop.hxx
|
|
|
|
# PCM library
|
|
|
|
libpcm_a_SOURCES = \
|
|
src/pcm_buffer.c src/pcm_buffer.h \
|
|
src/pcm_export.c src/pcm_export.h \
|
|
src/pcm_convert.c src/pcm_convert.h \
|
|
src/dsd2pcm/dsd2pcm.c src/dsd2pcm/dsd2pcm.h \
|
|
src/pcm_dsd.c src/pcm_dsd.h \
|
|
src/pcm_dsd_usb.c src/pcm_dsd_usb.h \
|
|
src/pcm_volume.c src/pcm_volume.h \
|
|
src/pcm_mix.c src/pcm_mix.h \
|
|
src/pcm_channels.c src/pcm_channels.h \
|
|
src/pcm_pack.c src/pcm_pack.h \
|
|
src/pcm_format.c src/pcm_format.h \
|
|
src/pcm_resample.c src/pcm_resample.h \
|
|
src/pcm_resample_fallback.c \
|
|
src/pcm_resample_internal.h \
|
|
src/pcm_dither.c src/pcm_dither.h \
|
|
src/pcm_prng.h \
|
|
src/pcm_utils.h
|
|
libpcm_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(SAMPLERATE_CFLAGS)
|
|
|
|
PCM_LIBS = \
|
|
libpcm.a \
|
|
$(SAMPLERATE_LIBS)
|
|
|
|
if HAVE_LIBSAMPLERATE
|
|
libpcm_a_SOURCES += src/pcm_resample_libsamplerate.c
|
|
endif
|
|
|
|
# File system library
|
|
|
|
libfs_a_SOURCES = \
|
|
src/fs/Path.cxx src/fs/Path.hxx \
|
|
src/fs/FileSystem.cxx src/fs/FileSystem.hxx \
|
|
src/fs/DirectoryReader.hxx
|
|
|
|
# database plugins
|
|
|
|
libdb_plugins_a_SOURCES = \
|
|
src/DatabaseRegistry.cxx src/DatabaseRegistry.hxx \
|
|
src/DatabaseHelpers.cxx src/DatabaseHelpers.hxx \
|
|
src/db/SimpleDatabasePlugin.cxx src/db/SimpleDatabasePlugin.hxx
|
|
|
|
if HAVE_LIBMPDCLIENT
|
|
libdb_plugins_a_SOURCES += \
|
|
src/db/ProxyDatabasePlugin.cxx src/db/ProxyDatabasePlugin.hxx
|
|
endif
|
|
|
|
DB_LIBS = \
|
|
libdb_plugins.a \
|
|
$(LIBMPDCLIENT_LIBS)
|
|
|
|
# archive plugins
|
|
|
|
if ENABLE_ARCHIVE
|
|
|
|
noinst_LIBRARIES += libarchive.a
|
|
|
|
src_mpd_SOURCES += \
|
|
src/UpdateArchive.cxx src/UpdateArchive.hxx
|
|
|
|
libarchive_a_SOURCES = \
|
|
src/ArchiveLookup.cxx src/ArchiveLookup.hxx \
|
|
src/ArchiveList.cxx src/ArchiveList.hxx \
|
|
src/ArchivePlugin.cxx src/ArchivePlugin.hxx \
|
|
src/ArchiveVisitor.hxx \
|
|
src/ArchiveFile.hxx \
|
|
src/input/ArchiveInputPlugin.cxx src/input/ArchiveInputPlugin.hxx
|
|
libarchive_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(BZ2_CFLAGS) \
|
|
$(ISO9660_CFLAGS) \
|
|
$(ZZIP_CFLAGS)
|
|
|
|
ARCHIVE_LIBS = \
|
|
libarchive.a \
|
|
$(BZ2_LIBS) \
|
|
$(ISO9660_LIBS) \
|
|
$(ZZIP_LIBS)
|
|
|
|
if HAVE_BZ2
|
|
libarchive_a_SOURCES += \
|
|
src/archive/Bzip2ArchivePlugin.cxx \
|
|
src/archive/Bzip2ArchivePlugin.hxx
|
|
endif
|
|
|
|
if HAVE_ZZIP
|
|
libarchive_a_SOURCES += \
|
|
src/archive/ZzipArchivePlugin.cxx \
|
|
src/archive/ZzipArchivePlugin.hxx
|
|
endif
|
|
|
|
if HAVE_ISO9660
|
|
libarchive_a_SOURCES += \
|
|
src/archive/Iso9660ArchivePlugin.cxx \
|
|
src/archive/Iso9660ArchivePlugin.hxx
|
|
endif
|
|
|
|
else
|
|
ARCHIVE_LIBS =
|
|
endif
|
|
|
|
# configuration library
|
|
|
|
libconf_a_SOURCES = \
|
|
src/ConfigData.cxx src/ConfigData.hxx \
|
|
src/ConfigParser.cxx src/ConfigParser.hxx \
|
|
src/ConfigGlobal.cxx src/ConfigGlobal.hxx \
|
|
src/ConfigFile.cxx src/ConfigFile.hxx \
|
|
src/ConfigTemplates.cxx src/ConfigTemplates.hxx \
|
|
src/ConfigQuark.hxx \
|
|
src/ConfigOption.hxx
|
|
|
|
# tag plugins
|
|
|
|
libtag_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(ID3TAG_CFLAGS)
|
|
TAG_LIBS = \
|
|
libtag.a \
|
|
$(ID3TAG_LIBS)
|
|
|
|
libtag_a_SOURCES =\
|
|
src/ape.c \
|
|
src/replay_gain_ape.c \
|
|
src/tag_ape.c
|
|
|
|
if HAVE_ID3TAG
|
|
libtag_a_SOURCES += \
|
|
src/tag_id3.c \
|
|
src/tag_rva2.c \
|
|
src/riff.c src/aiff.c
|
|
endif
|
|
|
|
# decoder plugins
|
|
|
|
libdecoder_plugins_a_SOURCES = \
|
|
src/decoder/pcm_decoder_plugin.c \
|
|
src/decoder/dsdiff_decoder_plugin.c \
|
|
src/decoder/dsdiff_decoder_plugin.h \
|
|
src/decoder/dsf_decoder_plugin.c \
|
|
src/decoder/dsf_decoder_plugin.h \
|
|
src/decoder/dsdlib.c \
|
|
src/decoder/dsdlib.h \
|
|
src/decoder_buffer.c \
|
|
src/decoder_plugin.c \
|
|
src/DecoderList.cxx src/DecoderList.hxx
|
|
libdecoder_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(VORBIS_CFLAGS) $(TREMOR_CFLAGS) \
|
|
$(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \
|
|
$(SNDFILE_CFLAGS) \
|
|
$(AUDIOFILE_CFLAGS) \
|
|
$(LIBMIKMOD_CFLAGS) \
|
|
$(GME_CFLAGS) \
|
|
$(SIDPLAY_CFLAGS) \
|
|
$(FLUIDSYNTH_CFLAGS) \
|
|
$(WILDMIDI_CFLAGS) \
|
|
$(WAVPACK_CFLAGS) \
|
|
$(MAD_CFLAGS) \
|
|
$(MPG123_CFLAGS) \
|
|
$(OPUS_CFLAGS) \
|
|
$(FFMPEG_CFLAGS) \
|
|
$(MPCDEC_CFLAGS) \
|
|
$(ADPLUG_CFLAGS) \
|
|
$(FAAD_CFLAGS)
|
|
|
|
DECODER_LIBS = \
|
|
libdecoder_plugins.a \
|
|
$(VORBIS_LIBS) $(TREMOR_LIBS) \
|
|
$(FLAC_LIBS) \
|
|
$(SNDFILE_LIBS) \
|
|
$(AUDIOFILE_LIBS) $(LIBMIKMOD_LIBS) \
|
|
$(GME_LIBS) \
|
|
$(SIDPLAY_LIBS) \
|
|
$(FLUIDSYNTH_LIBS) \
|
|
$(WILDMIDI_LIBS) \
|
|
$(WAVPACK_LIBS) \
|
|
$(MAD_LIBS) \
|
|
$(MPG123_LIBS) \
|
|
$(OPUS_LIBS) \
|
|
$(FFMPEG_LIBS) \
|
|
$(MPCDEC_LIBS) \
|
|
$(ADPLUG_LIBS) \
|
|
$(FAAD_LIBS)
|
|
|
|
DECODER_SRC =
|
|
|
|
if HAVE_MAD
|
|
libdecoder_plugins_a_SOURCES += src/decoder/mad_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_MPG123
|
|
libdecoder_plugins_a_SOURCES += src/decoder/mpg123_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_MPCDEC
|
|
libdecoder_plugins_a_SOURCES += src/decoder/mpcdec_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_OPUS
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/OggUtil.cxx \
|
|
src/decoder/OggUtil.hxx \
|
|
src/decoder/OggFind.cxx src/decoder/OggFind.hxx \
|
|
src/decoder/OpusReader.hxx \
|
|
src/decoder/OpusHead.hxx \
|
|
src/decoder/OpusHead.cxx \
|
|
src/decoder/OpusTags.cxx \
|
|
src/decoder/OpusTags.hxx \
|
|
src/decoder/OpusDecoderPlugin.cxx \
|
|
src/decoder/OpusDecoderPlugin.h
|
|
endif
|
|
|
|
if HAVE_WAVPACK
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/WavpackDecoderPlugin.cxx \
|
|
src/decoder/WavpackDecoderPlugin.hxx
|
|
endif
|
|
|
|
if HAVE_ADPLUG
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/AdPlugDecoderPlugin.cxx \
|
|
src/decoder/AdPlugDecoderPlugin.h
|
|
endif
|
|
|
|
if HAVE_FAAD
|
|
libdecoder_plugins_a_SOURCES += src/decoder/faad_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_XIPH
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/XiphTags.c src/decoder/XiphTags.h \
|
|
src/decoder/OggCodec.cxx src/decoder/OggCodec.hxx
|
|
endif
|
|
|
|
if ENABLE_VORBIS_DECODER
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/VorbisComments.cxx src/decoder/VorbisComments.hxx \
|
|
src/decoder/VorbisDecoderPlugin.cxx src/decoder/VorbisDecoderPlugin.h
|
|
endif
|
|
|
|
if HAVE_FLAC
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/FLACInput.cxx src/decoder/FLACInput.hxx \
|
|
src/decoder/FLACIOHandle.cxx src/decoder/FLACIOHandle.hxx \
|
|
src/decoder/FLACMetaData.cxx src/decoder/FLACMetaData.hxx \
|
|
src/decoder/FLAC_PCM.cxx src/decoder/FLAC_PCM.hxx \
|
|
src/decoder/FLACCommon.cxx src/decoder/FLACCommon.hxx \
|
|
src/decoder/FLACDecoderPlugin.cxx \
|
|
src/decoder/FLACDecoderPlugin.h
|
|
endif
|
|
|
|
if HAVE_AUDIOFILE
|
|
libdecoder_plugins_a_SOURCES += src/decoder/audiofile_decoder_plugin.c
|
|
endif
|
|
|
|
if ENABLE_MIKMOD_DECODER
|
|
libdecoder_plugins_a_SOURCES += src/decoder/mikmod_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_MODPLUG
|
|
libmodplug_decoder_plugin_a_SOURCES = src/decoder/modplug_decoder_plugin.c
|
|
libmodplug_decoder_plugin_a_CFLAGS = $(src_mpd_CFLAGS) $(MODPLUG_CFLAGS)
|
|
libmodplug_decoder_plugin_a_CPPFLAGS = $(src_mpd_CPPFLAGS)
|
|
noinst_LIBRARIES += libmodplug_decoder_plugin.a
|
|
DECODER_LIBS += libmodplug_decoder_plugin.a $(MODPLUG_LIBS)
|
|
endif
|
|
|
|
if ENABLE_SIDPLAY
|
|
libdecoder_plugins_a_SOURCES += src/decoder/sidplay_decoder_plugin.cxx
|
|
endif
|
|
|
|
if ENABLE_FLUIDSYNTH
|
|
libdecoder_plugins_a_SOURCES += src/decoder/fluidsynth_decoder_plugin.c
|
|
endif
|
|
|
|
if ENABLE_WILDMIDI
|
|
libdecoder_plugins_a_SOURCES += src/decoder/wildmidi_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_FFMPEG
|
|
libdecoder_plugins_a_SOURCES += \
|
|
src/decoder/FfmpegMetaData.cxx \
|
|
src/decoder/FfmpegMetaData.hxx \
|
|
src/decoder/FfmpegDecoderPlugin.cxx \
|
|
src/decoder/FfmpegDecoderPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_SNDFILE
|
|
libdecoder_plugins_a_SOURCES += src/decoder/sndfile_decoder_plugin.c
|
|
endif
|
|
|
|
if HAVE_GME
|
|
libdecoder_plugins_a_SOURCES += src/decoder/gme_decoder_plugin.c
|
|
endif
|
|
|
|
# encoder plugins
|
|
|
|
if ENABLE_ENCODER
|
|
|
|
noinst_LIBRARIES += libencoder_plugins.a
|
|
|
|
libencoder_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(LAME_CFLAGS) \
|
|
$(TWOLAME_CFLAGS) \
|
|
$(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \
|
|
$(OPUS_CFLAGS) \
|
|
$(VORBISENC_CFLAGS)
|
|
|
|
ENCODER_LIBS = \
|
|
libencoder_plugins.a \
|
|
$(LAME_LIBS) \
|
|
$(TWOLAME_LIBS) \
|
|
$(FLAC_LIBS) \
|
|
$(OPUS_LIBS) \
|
|
$(VORBISENC_LIBS)
|
|
|
|
libencoder_plugins_a_SOURCES = \
|
|
src/encoder/OggStream.hxx \
|
|
src/encoder/null_encoder.c \
|
|
src/encoder_list.c
|
|
|
|
if ENABLE_WAVE_ENCODER
|
|
libencoder_plugins_a_SOURCES += src/encoder/wave_encoder.c
|
|
endif
|
|
|
|
if ENABLE_VORBIS_ENCODER
|
|
libencoder_plugins_a_SOURCES += \
|
|
src/encoder/VorbisEncoderPlugin.cxx \
|
|
src/encoder/VorbisEncoderPlugin.hxx
|
|
endif
|
|
|
|
if HAVE_OPUS
|
|
libencoder_plugins_a_SOURCES += \
|
|
src/encoder/OpusEncoderPlugin.cxx \
|
|
src/encoder/OpusEncoderPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_LAME_ENCODER
|
|
libencoder_plugins_a_SOURCES += src/encoder/lame_encoder.c
|
|
endif
|
|
|
|
if ENABLE_TWOLAME_ENCODER
|
|
libencoder_plugins_a_SOURCES += src/encoder/twolame_encoder.c
|
|
endif
|
|
|
|
if ENABLE_FLAC_ENCODER
|
|
libencoder_plugins_a_SOURCES += src/encoder/flac_encoder.c
|
|
endif
|
|
|
|
else
|
|
ENCODER_LIBS =
|
|
endif
|
|
|
|
|
|
if HAVE_ZEROCONF
|
|
src_mpd_SOURCES += \
|
|
src/ZeroconfInternal.hxx \
|
|
src/ZeroconfGlue.cxx src/ZeroconfGlue.hxx
|
|
|
|
if HAVE_AVAHI
|
|
src_mpd_SOURCES += src/ZeroconfAvahi.cxx src/ZeroconfAvahi.hxx
|
|
endif
|
|
|
|
if HAVE_BONJOUR
|
|
src_mpd_SOURCES += src/ZeroconfBonjour.cxx src/ZeroconfBonjour.hxx
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# input plugins
|
|
#
|
|
|
|
libinput_a_SOURCES = \
|
|
src/InputInit.cxx src/InputInit.hxx \
|
|
src/InputRegistry.cxx src/InputRegistry.hxx \
|
|
src/InputStream.cxx src/InputStream.hxx \
|
|
src/InputPlugin.hxx \
|
|
src/InputInternal.cxx src/InputInternal.hxx \
|
|
src/input/RewindInputPlugin.cxx src/input/RewindInputPlugin.hxx \
|
|
src/input/FileInputPlugin.cxx src/input/FileInputPlugin.hxx
|
|
|
|
libinput_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(CURL_CFLAGS) \
|
|
$(SOUP_CFLAGS) \
|
|
$(CDIO_PARANOIA_CFLAGS) \
|
|
$(FFMPEG_CFLAGS) \
|
|
$(DESPOTIFY_CFLAGS) \
|
|
$(MMS_CFLAGS)
|
|
|
|
INPUT_LIBS = \
|
|
libinput.a \
|
|
$(CURL_LIBS) \
|
|
$(SOUP_LIBS) \
|
|
$(CDIO_PARANOIA_LIBS) \
|
|
$(FFMPEG_LIBS) \
|
|
$(DESPOTIFY_LIBS) \
|
|
$(MMS_LIBS)
|
|
|
|
if ENABLE_CURL
|
|
libinput_a_SOURCES += \
|
|
src/input/CurlInputPlugin.cxx src/input/CurlInputPlugin.hxx \
|
|
src/IcyMetaDataParser.cxx src/IcyMetaDataParser.hxx
|
|
endif
|
|
|
|
if ENABLE_SOUP
|
|
libinput_a_SOURCES += \
|
|
src/input/SoupInputPlugin.cxx src/input/SoupInputPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_CDIO_PARANOIA
|
|
libinput_a_SOURCES += \
|
|
src/input/CdioParanoiaInputPlugin.cxx \
|
|
src/input/CdioParanoiaInputPlugin.hxx
|
|
endif
|
|
|
|
if HAVE_FFMPEG
|
|
libinput_a_SOURCES += \
|
|
src/input/FfmpegInputPlugin.cxx src/input/FfmpegInputPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_MMS
|
|
libinput_a_SOURCES += \
|
|
src/input/MmsInputPlugin.cxx src/input/MmsInputPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_DESPOTIFY
|
|
libinput_a_SOURCES += \
|
|
src/input/DespotifyInputPlugin.cxx \
|
|
src/input/DespotifyInputPlugin.hxx
|
|
endif
|
|
|
|
|
|
liboutput_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(AO_CFLAGS) \
|
|
$(ALSA_CFLAGS) \
|
|
$(FFADO_CFLAGS) \
|
|
$(JACK_CFLAGS) \
|
|
$(OPENAL_CFLAGS) \
|
|
$(OPENSSL_CFLAGS) \
|
|
$(PULSE_CFLAGS) \
|
|
$(SHOUT_CFLAGS)
|
|
|
|
OUTPUT_LIBS = \
|
|
liboutput_plugins.a \
|
|
$(LIBWRAP_LDFLAGS) \
|
|
$(AO_LIBS) \
|
|
$(ALSA_LIBS) \
|
|
$(ROAR_LIBS) \
|
|
$(FFADO_LIBS) \
|
|
$(JACK_LIBS) \
|
|
$(OPENAL_LIBS) \
|
|
$(PULSE_LIBS) \
|
|
$(SHOUT_LIBS)
|
|
|
|
OUTPUT_API_SRC = \
|
|
src/OutputList.cxx src/OutputList.hxx \
|
|
src/OutputAll.cxx src/OutputAll.hxx \
|
|
src/OutputThread.cxx src/OutputThread.hxx \
|
|
src/OutputError.hxx \
|
|
src/OutputControl.cxx src/OutputControl.hxx \
|
|
src/OutputState.cxx src/OutputState.hxx \
|
|
src/OutputPrint.cxx src/OutputPrint.hxx \
|
|
src/OutputCommand.cxx src/OutputCommand.hxx \
|
|
src/OutputPlugin.cxx src/output_plugin.h \
|
|
src/OutputFinish.cxx \
|
|
src/OutputInit.cxx
|
|
|
|
liboutput_plugins_a_SOURCES = \
|
|
src/output/null_output_plugin.h \
|
|
src/output/null_output_plugin.c
|
|
|
|
MIXER_LIBS = \
|
|
libmixer_plugins.a \
|
|
$(PULSE_LIBS)
|
|
|
|
MIXER_API_SRC = \
|
|
src/mixer_control.c \
|
|
src/mixer_type.c \
|
|
src/MixerAll.cxx src/MixerAll.hxx \
|
|
src/mixer_api.c
|
|
|
|
libmixer_plugins_a_SOURCES = \
|
|
src/mixer/software_mixer_plugin.c
|
|
libmixer_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(ALSA_CFLAGS) \
|
|
$(PULSE_CFLAGS)
|
|
|
|
if HAVE_ALSA
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/AlsaOutputPlugin.cxx \
|
|
src/output/AlsaOutputPlugin.hxx
|
|
libmixer_plugins_a_SOURCES += src/mixer/AlsaMixerPlugin.cxx
|
|
endif
|
|
|
|
if HAVE_ROAR
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/RoarOutputPlugin.cxx src/output/RoarOutputPlugin.hxx
|
|
libmixer_plugins_a_SOURCES += src/mixer/RoarMixerPlugin.cxx
|
|
endif
|
|
|
|
if ENABLE_FFADO_OUTPUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/ffado_output_plugin.c src/output/ffado_output_plugin.h
|
|
endif
|
|
|
|
if HAVE_AO
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/ao_output_plugin.c src/output/ao_output_plugin.h
|
|
endif
|
|
|
|
if HAVE_FIFO
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/fifo_output_plugin.c src/output/fifo_output_plugin.h
|
|
endif
|
|
|
|
if ENABLE_PIPE_OUTPUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/pipe_output_plugin.c src/output/pipe_output_plugin.h
|
|
endif
|
|
|
|
if HAVE_JACK
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/jack_output_plugin.c src/output/jack_output_plugin.h
|
|
endif
|
|
|
|
if HAVE_MVP
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/mvp_output_plugin.c src/output/mvp_output_plugin.h
|
|
endif
|
|
|
|
if HAVE_OSS
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/OssOutputPlugin.cxx \
|
|
src/output/OssOutputPlugin.hxx
|
|
libmixer_plugins_a_SOURCES += src/mixer/OssMixerPlugin.cxx
|
|
endif
|
|
|
|
if HAVE_OPENAL
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/openal_output_plugin.c src/output/openal_output_plugin.h
|
|
endif
|
|
|
|
if HAVE_OSX
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/OSXOutputPlugin.cxx \
|
|
src/output/OSXOutputPlugin.hxx
|
|
endif
|
|
|
|
if HAVE_PULSE
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/pulse_output_plugin.c src/output/pulse_output_plugin.h
|
|
libmixer_plugins_a_SOURCES += \
|
|
src/mixer/PulseMixerPlugin.cxx src/mixer/PulseMixerPlugin.h
|
|
endif
|
|
|
|
if HAVE_SHOUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/shout_output_plugin.c src/output/shout_output_plugin.h
|
|
endif
|
|
|
|
if ENABLE_RECORDER_OUTPUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/recorder_output_plugin.c src/output/recorder_output_plugin.h
|
|
endif
|
|
|
|
if ENABLE_HTTPD_OUTPUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/IcyMetaDataServer.cxx src/IcyMetaDataServer.hxx \
|
|
src/output/HttpdInternal.hxx \
|
|
src/output/HttpdClient.cxx src/output/HttpdClient.hxx \
|
|
src/output/HttpdOutputPlugin.cxx src/output/HttpdOutputPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_SOLARIS_OUTPUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/solaris_output_plugin.c src/output/solaris_output_plugin.h
|
|
endif
|
|
|
|
if ENABLE_WINMM_OUTPUT
|
|
liboutput_plugins_a_SOURCES += \
|
|
src/output/winmm_output_plugin.c src/output/winmm_output_plugin.h
|
|
libmixer_plugins_a_SOURCES += src/mixer/winmm_mixer_plugin.c
|
|
endif
|
|
|
|
|
|
#
|
|
# Playlist plugins
|
|
#
|
|
|
|
libplaylist_plugins_a_SOURCES = \
|
|
src/PlaylistPlugin.hxx \
|
|
src/playlist/MemoryPlaylistProvider.cxx \
|
|
src/playlist/MemoryPlaylistProvider.hxx \
|
|
src/playlist/ExtM3uPlaylistPlugin.cxx \
|
|
src/playlist/ExtM3uPlaylistPlugin.hxx \
|
|
src/playlist/M3uPlaylistPlugin.cxx \
|
|
src/playlist/M3uPlaylistPlugin.hxx \
|
|
src/playlist/PlsPlaylistPlugin.cxx \
|
|
src/playlist/PlsPlaylistPlugin.hxx \
|
|
src/playlist/XspfPlaylistPlugin.cxx \
|
|
src/playlist/XspfPlaylistPlugin.hxx \
|
|
src/playlist/AsxPlaylistPlugin.cxx \
|
|
src/playlist/AsxPlaylistPlugin.hxx \
|
|
src/playlist/RssPlaylistPlugin.cxx \
|
|
src/playlist/RssPlaylistPlugin.hxx \
|
|
src/playlist/CuePlaylistPlugin.cxx \
|
|
src/playlist/CuePlaylistPlugin.hxx \
|
|
src/playlist/EmbeddedCuePlaylistPlugin.cxx \
|
|
src/playlist/EmbeddedCuePlaylistPlugin.hxx \
|
|
src/PlaylistRegistry.cxx src/PlaylistRegistry.hxx
|
|
libplaylist_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(YAJL_CFLAGS) \
|
|
$(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS))
|
|
|
|
PLAYLIST_LIBS = \
|
|
libplaylist_plugins.a \
|
|
$(FLAC_LIBS)
|
|
|
|
if ENABLE_LASTFM
|
|
libplaylist_plugins_a_SOURCES += \
|
|
src/playlist/LastFMPlaylistPlugin.cxx \
|
|
src/playlist/LastFMPlaylistPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_DESPOTIFY
|
|
libplaylist_plugins_a_SOURCES += \
|
|
src/playlist/DespotifyPlaylistPlugin.cxx \
|
|
src/playlist/DespotifyPlaylistPlugin.hxx
|
|
endif
|
|
|
|
if ENABLE_SOUNDCLOUD
|
|
libplaylist_plugins_a_SOURCES += \
|
|
src/playlist/SoundCloudPlaylistPlugin.cxx \
|
|
src/playlist/SoundCloudPlaylistPlugin.hxx
|
|
PLAYLIST_LIBS += $(YAJL_LIBS)
|
|
endif
|
|
|
|
#
|
|
# Filter plugins
|
|
#
|
|
|
|
libfilter_plugins_a_SOURCES = \
|
|
src/filter/null_filter_plugin.c \
|
|
src/filter/chain_filter_plugin.c \
|
|
src/filter/autoconvert_filter_plugin.c \
|
|
src/filter/convert_filter_plugin.c \
|
|
src/filter/route_filter_plugin.c \
|
|
src/filter/normalize_filter_plugin.c \
|
|
src/filter/ReplayGainFilterPlugin.cxx \
|
|
src/filter/ReplayGainFilterPlugin.hxx \
|
|
src/filter/volume_filter_plugin.c
|
|
|
|
FILTER_LIBS = \
|
|
libfilter_plugins.a \
|
|
$(PCM_LIBS)
|
|
|
|
|
|
#
|
|
# systemd unit
|
|
#
|
|
|
|
if HAVE_SYSTEMD
|
|
systemdsystemunit_DATA = \
|
|
mpd.service
|
|
endif
|
|
|
|
#
|
|
# Sparse code analysis
|
|
#
|
|
# sparse is a semantic parser
|
|
# URL: git://www.kernel.org/pub/scm/devel/sparse/sparse.git
|
|
#
|
|
|
|
SPARSE = sparse
|
|
SPARSE_FLAGS =
|
|
SPARSE_CPPFLAGS = $(DEFAULT_INCLUDES) \
|
|
-I$(shell $(CC) -print-file-name=include) \
|
|
-I$(shell $(CC) -print-file-name=include-fixed)
|
|
SPARSE_CPPFLAGS += -D__SCHAR_MAX__=127 -D__SHRT_MAX__=32767 \
|
|
-D__INT_MAX__=2147483647 -D__LONG_MAX__=2147483647
|
|
SPARSE_SRC = $(addprefix $(top_srcdir)/,$(filter %.c,$(src_mpd_SOURCES)))
|
|
sparse-check:
|
|
$(SPARSE) -I. $(src_mpd_CFLAGS) $(src_mpd_CPPFLAGS) $(SPARSE_FLAGS) $(SPARSE_CPPFLAGS) $(SPARSE_SRC)
|
|
|
|
.PHONY: sparse-check
|
|
|
|
|
|
#
|
|
# Test programs
|
|
#
|
|
|
|
if ENABLE_TEST
|
|
|
|
C_TESTS = \
|
|
test/test_byte_reverse \
|
|
test/test_pcm \
|
|
test/test_queue_priority
|
|
|
|
TESTS = $(C_TESTS)
|
|
|
|
noinst_PROGRAMS = \
|
|
$(C_TESTS) \
|
|
test/read_conf \
|
|
test/run_resolver \
|
|
test/DumpDatabase \
|
|
test/run_input \
|
|
test/dump_text_file \
|
|
test/dump_playlist \
|
|
test/run_decoder \
|
|
test/read_tags \
|
|
test/run_filter \
|
|
test/run_output \
|
|
test/run_convert \
|
|
test/run_normalize \
|
|
test/software_volume
|
|
|
|
if ENABLE_ARCHIVE
|
|
noinst_PROGRAMS += test/visit_archive
|
|
endif
|
|
|
|
if HAVE_ID3TAG
|
|
noinst_PROGRAMS += test/dump_rva2
|
|
endif
|
|
|
|
if HAVE_ALSA
|
|
# this debug program is still ALSA specific
|
|
noinst_PROGRAMS += test/read_mixer
|
|
endif
|
|
|
|
test_read_conf_LDADD = \
|
|
libconf.a \
|
|
libfs.a \
|
|
$(GLIB_LIBS)
|
|
test_read_conf_SOURCES = test/read_conf.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c
|
|
|
|
test_run_resolver_LDADD = \
|
|
$(GLIB_LIBS)
|
|
test_run_resolver_SOURCES = test/run_resolver.c \
|
|
src/resolver.c
|
|
|
|
test_DumpDatabase_LDADD = \
|
|
$(DB_LIBS) \
|
|
libconf.a \
|
|
libutil.a \
|
|
libfs.a \
|
|
$(GLIB_LIBS)
|
|
test_DumpDatabase_SOURCES = test/DumpDatabase.cxx \
|
|
src/DatabaseRegistry.cxx \
|
|
src/DatabaseSelection.cxx \
|
|
src/Directory.cxx src/DirectorySave.cxx \
|
|
src/PlaylistVector.cxx src/PlaylistDatabase.cxx \
|
|
src/DatabaseLock.cxx src/DatabaseSave.cxx \
|
|
src/Song.cxx src/song_sort.c src/SongSave.cxx \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx \
|
|
src/SongFilter.cxx \
|
|
src/TextFile.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c
|
|
|
|
test_run_input_LDADD = \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
$(GLIB_LIBS)
|
|
test_run_input_SOURCES = test/run_input.cxx \
|
|
test/stdbin.h \
|
|
src/IOThread.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c\
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx \
|
|
src/uri.c \
|
|
src/fd_util.c
|
|
|
|
if ENABLE_ARCHIVE
|
|
|
|
test_visit_archive_LDADD = \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
$(GLIB_LIBS)
|
|
test_visit_archive_SOURCES = test/visit_archive.cxx \
|
|
src/IOThread.cxx \
|
|
src/InputStream.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx \
|
|
src/uri.c \
|
|
src/fd_util.c
|
|
|
|
if ENABLE_DESPOTIFY
|
|
test_visit_archive_SOURCES += src/DespotifyUtils.cxx
|
|
endif
|
|
|
|
endif
|
|
|
|
test_dump_text_file_LDADD = \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
test_dump_text_file_SOURCES = test/dump_text_file.cxx \
|
|
test/stdbin.h \
|
|
src/IOThread.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c\
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx \
|
|
src/text_input_stream.c \
|
|
src/uri.c \
|
|
src/fd_util.c
|
|
|
|
test_dump_playlist_LDADD = \
|
|
$(PLAYLIST_LIBS) \
|
|
$(FLAC_LIBS) \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
$(DECODER_LIBS) \
|
|
$(TAG_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
test_dump_playlist_SOURCES = test/dump_playlist.cxx \
|
|
$(DECODER_SRC) \
|
|
src/IOThread.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c\
|
|
src/uri.c \
|
|
src/Song.cxx src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx \
|
|
src/tag_handler.c src/TagFile.cxx \
|
|
src/audio_check.c src/pcm_buffer.c \
|
|
src/text_input_stream.c \
|
|
src/cue/cue_parser.c src/cue/cue_parser.h \
|
|
src/fd_util.c
|
|
|
|
if HAVE_FLAC
|
|
test_dump_playlist_SOURCES += \
|
|
src/ReplayGainInfo.cxx \
|
|
src/decoder/FLACMetaData.cxx
|
|
endif
|
|
|
|
test_run_decoder_LDADD = \
|
|
$(DECODER_LIBS) \
|
|
libpcm.a \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
$(TAG_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
test_run_decoder_SOURCES = test/run_decoder.cxx \
|
|
test/stdbin.h \
|
|
src/IOThread.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/tag_handler.c \
|
|
src/ReplayGainInfo.cxx \
|
|
src/uri.c \
|
|
src/fd_util.c \
|
|
src/audio_check.c \
|
|
src/audio_format.c \
|
|
$(ARCHIVE_SRC) \
|
|
$(INPUT_SRC) \
|
|
$(TAG_SRC) \
|
|
$(DECODER_SRC)
|
|
|
|
test_read_tags_LDADD = \
|
|
$(DECODER_LIBS) \
|
|
libpcm.a \
|
|
$(INPUT_LIBS) \
|
|
$(ARCHIVE_LIBS) \
|
|
$(TAG_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
test_read_tags_SOURCES = test/read_tags.cxx \
|
|
src/IOThread.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/tag_handler.c \
|
|
src/ReplayGainInfo.cxx \
|
|
src/uri.c \
|
|
src/fd_util.c \
|
|
src/audio_check.c \
|
|
$(DECODER_SRC)
|
|
|
|
if HAVE_ID3TAG
|
|
test_dump_rva2_LDADD = \
|
|
$(ID3TAG_LIBS) \
|
|
$(GLIB_LIBS)
|
|
test_dump_rva2_SOURCES = test/dump_rva2.c \
|
|
src/riff.c src/aiff.c \
|
|
src/tag_handler.c \
|
|
src/tag_id3.c \
|
|
src/tag_rva2.c
|
|
endif
|
|
|
|
test_run_filter_LDADD = \
|
|
$(FILTER_LIBS) \
|
|
libconf.a \
|
|
libfs.a \
|
|
$(GLIB_LIBS)
|
|
test_run_filter_SOURCES = test/run_filter.cxx \
|
|
test/FakeReplayGainConfig.cxx \
|
|
test/stdbin.h \
|
|
src/filter_plugin.c \
|
|
src/filter_registry.c \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/audio_check.c \
|
|
src/audio_format.c \
|
|
src/AudioParser.cxx \
|
|
src/ReplayGainInfo.cxx \
|
|
src/AudioCompress/compress.c
|
|
|
|
if ENABLE_DESPOTIFY
|
|
test_read_tags_SOURCES += src/DespotifyUtils.cxx
|
|
test_run_input_SOURCES += src/DespotifyUtils.cxx
|
|
test_dump_text_file_SOURCES += src/DespotifyUtils.cxx
|
|
test_dump_playlist_SOURCES += src/DespotifyUtils.cxx
|
|
test_run_decoder_SOURCES += src/DespotifyUtils.cxx
|
|
endif
|
|
|
|
if ENABLE_ENCODER
|
|
noinst_PROGRAMS += test/run_encoder
|
|
test_run_encoder_SOURCES = test/run_encoder.cxx \
|
|
test/stdbin.h \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx \
|
|
src/audio_check.c \
|
|
src/audio_format.c \
|
|
src/AudioParser.cxx
|
|
test_run_encoder_LDADD = \
|
|
$(ENCODER_LIBS) \
|
|
$(TAG_LIBS) \
|
|
libconf.a \
|
|
libpcm.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
endif
|
|
|
|
if ENABLE_VORBIS_ENCODER
|
|
noinst_PROGRAMS += test/test_vorbis_encoder
|
|
test_test_vorbis_encoder_SOURCES = test/test_vorbis_encoder.c \
|
|
test/stdbin.h \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx \
|
|
src/audio_check.c \
|
|
src/audio_format.c \
|
|
src/AudioParser.cxx \
|
|
src/pcm_buffer.c \
|
|
$(ENCODER_SRC)
|
|
test_test_vorbis_encoder_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
$(ENCODER_CFLAGS)
|
|
test_test_vorbis_encoder_LDADD = $(MPD_LIBS) \
|
|
$(ENCODER_LIBS) \
|
|
libconf.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
endif
|
|
|
|
test_software_volume_SOURCES = test/software_volume.cxx \
|
|
test/stdbin.h \
|
|
src/audio_check.c \
|
|
src/AudioParser.cxx
|
|
test_software_volume_LDADD = \
|
|
$(PCM_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
test_run_normalize_SOURCES = test/run_normalize.cxx \
|
|
test/stdbin.h \
|
|
src/audio_check.c \
|
|
src/AudioParser.cxx \
|
|
src/AudioCompress/compress.c
|
|
test_run_normalize_LDADD = \
|
|
$(GLIB_LIBS)
|
|
|
|
test_run_convert_SOURCES = test/run_convert.cxx \
|
|
src/dsd2pcm/dsd2pcm.c \
|
|
src/audio_format.c \
|
|
src/audio_check.c \
|
|
src/AudioParser.cxx
|
|
test_run_convert_LDADD = \
|
|
$(PCM_LIBS) \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
|
|
test_run_output_LDADD = $(MPD_LIBS) \
|
|
$(OUTPUT_LIBS) \
|
|
$(ENCODER_LIBS) \
|
|
libmixer_plugins.a \
|
|
$(FILTER_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
test_run_output_SOURCES = test/run_output.cxx \
|
|
test/FakeReplayGainConfig.cxx \
|
|
test/stdbin.h \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/IOThread.cxx \
|
|
src/audio_check.c \
|
|
src/audio_format.c \
|
|
src/AudioParser.cxx \
|
|
src/timer.c src/clock.c \
|
|
src/Tag.cxx src/TagNames.c src/TagPool.cxx \
|
|
src/Page.cxx \
|
|
src/SocketUtil.cxx \
|
|
src/resolver.c \
|
|
src/OutputInit.cxx src/OutputFinish.cxx src/OutputList.cxx \
|
|
src/OutputPlugin.cxx \
|
|
src/mixer_api.c \
|
|
src/mixer_control.c \
|
|
src/mixer_type.c \
|
|
src/filter_plugin.c \
|
|
src/FilterConfig.cxx \
|
|
src/AudioCompress/compress.c \
|
|
src/ReplayGainInfo.cxx \
|
|
src/fd_util.c
|
|
|
|
test_read_mixer_LDADD = \
|
|
libpcm.a \
|
|
libmixer_plugins.a \
|
|
$(OUTPUT_LIBS) \
|
|
libconf.a \
|
|
libevent.a \
|
|
libfs.a \
|
|
$(GLIB_LIBS)
|
|
test_read_mixer_SOURCES = test/read_mixer.cxx \
|
|
src/tokenizer.c src/utils.c src/string_util.c \
|
|
src/mixer_control.c src/mixer_api.c \
|
|
src/filter_plugin.c \
|
|
src/filter/volume_filter_plugin.c \
|
|
src/fd_util.c
|
|
|
|
if ENABLE_BZIP2_TEST
|
|
TESTS += test/test_archive_bzip2.sh
|
|
endif
|
|
|
|
if ENABLE_ZZIP_TEST
|
|
TESTS += test/test_archive_zzip.sh
|
|
endif
|
|
|
|
if ENABLE_ISO9660_TEST
|
|
TESTS += test/test_archive_iso9660.sh
|
|
endif
|
|
|
|
if ENABLE_INOTIFY
|
|
noinst_PROGRAMS += test/run_inotify
|
|
test_run_inotify_SOURCES = test/run_inotify.cxx \
|
|
src/fd_util.c \
|
|
src/InotifySource.cxx
|
|
test_run_inotify_LDADD = \
|
|
libevent.a \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
endif
|
|
|
|
test_test_byte_reverse_SOURCES = \
|
|
test/test_byte_reverse.c
|
|
test_test_byte_reverse_LDADD = \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
|
|
test_test_pcm_SOURCES = \
|
|
test/test_pcm_dither.c \
|
|
test/test_pcm_pack.c \
|
|
test/test_pcm_channels.c \
|
|
test/test_pcm_volume.c \
|
|
test/test_pcm_all.h \
|
|
test/test_pcm_main.c
|
|
test_test_pcm_LDADD = \
|
|
$(PCM_LIBS) \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
|
|
test_test_queue_priority_SOURCES = \
|
|
src/Queue.cxx \
|
|
src/fd_util.c \
|
|
test/test_queue_priority.cxx
|
|
test_test_queue_priority_LDADD = \
|
|
libutil.a \
|
|
$(GLIB_LIBS)
|
|
|
|
noinst_PROGRAMS += src/dsd2pcm/dsd2pcm
|
|
|
|
src_dsd2pcm_dsd2pcm_SOURCES = \
|
|
src/dsd2pcm/dsd2pcm.c src/dsd2pcm/dsd2pcm.h \
|
|
src/dsd2pcm/noiseshape.c src/dsd2pcm/noiseshape.h \
|
|
src/dsd2pcm/main.cpp
|
|
src_dsd2pcm_dsd2pcm_LDADD = libutil.a
|
|
|
|
endif
|
|
|
|
|
|
#
|
|
# Documentation
|
|
#
|
|
|
|
man_MANS = doc/mpd.1 doc/mpd.conf.5
|
|
doc_DATA = AUTHORS COPYING NEWS README UPGRADING doc/mpdconf.example
|
|
|
|
DOCBOOK_FILES = doc/protocol.xml doc/user.xml doc/developer.xml
|
|
|
|
if ENABLE_DOCUMENTATION
|
|
protocoldir = $(docdir)/protocol
|
|
protocol_DATA = $(wildcard doc/protocol/*.html)
|
|
|
|
userdir = $(docdir)/user
|
|
user_DATA = $(wildcard doc/user/*.html)
|
|
|
|
developerdir = $(docdir)/developer
|
|
developer_DATA = $(wildcard doc/developer/*.html)
|
|
|
|
if HAVE_XMLTO
|
|
|
|
DOCBOOK_HTML = $(patsubst %.xml,%/index.html,$(DOCBOOK_FILES))
|
|
|
|
$(DOCBOOK_HTML): %/index.html: %.xml
|
|
$(XMLTO) -o $(@D) --stringparam chunker.output.encoding=utf-8 html $<
|
|
|
|
else
|
|
|
|
DOCBOOK_HTML =
|
|
|
|
endif
|
|
|
|
doc/api/html/index.html: doc/doxygen.conf
|
|
@mkdir -p $(@D)
|
|
$(DOXYGEN) $<
|
|
|
|
all-local: $(DOCBOOK_HTML) doc/api/html/index.html
|
|
|
|
clean-local:
|
|
rm -rf $(patsubst %.xml,%,$(DOCBOOK_FILES))
|
|
rm -rf doc/api
|
|
|
|
install-data-local: doc/api/html/index.html
|
|
$(mkinstalldirs) $(DESTDIR)$(docdir)/api/html
|
|
$(INSTALL_DATA) -c -m 644 doc/api/html/*.* \
|
|
$(DESTDIR)$(docdir)/api/html
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(docdir)/api/html/*.*
|
|
|
|
upload: $(DOCBOOK_HTML) doc/api/html/index.html
|
|
rsync -vpruz --delete doc/ www.musicpd.org:/var/www/doc/ \
|
|
--chmod=Dug+rwx,Do+rx,Fug+rw,Fo+r \
|
|
--include=protocol --include=protocol/** \
|
|
--include=user --include=user/** \
|
|
--include=developer --include=developer/** \
|
|
--include=api --include=api/** \
|
|
--exclude=*
|
|
|
|
endif
|
|
|
|
|
|
#
|
|
# Distribution
|
|
#
|
|
|
|
EXTRA_DIST = $(doc_DATA) autogen.sh \
|
|
$(wildcard scripts/*.sh) \
|
|
$(man_MANS) $(DOCBOOK_FILES) doc/mpdconf.example doc/doxygen.conf \
|
|
src/win/mpd_win32_rc.rc.in src/win/mpd.ico
|