X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/4ba9806fada3ece29541ca5236cbd2f78965b2f2..2ab07259ee10fb32cb96b7df27327ff73f77bdf9:/server/Makefile.am diff --git a/server/Makefile.am b/server/Makefile.am index 3f77675..f67db97 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -1,33 +1,32 @@ # # This file is part of DisOrder. -# Copyright (C) 2004-2008 Richard Kettlewell +# Copyright (C) 2004-2009 Richard Kettlewell # -# This program is free software; you can redistribute it and/or modify +# This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -# USA +# along with this program. If not, see . # sbin_PROGRAMS=disorderd disorder-deadlock disorder-rescan disorder-dump \ disorder-speaker disorder-decode disorder-normalize \ disorder-stats disorder-dbupgrade disorder-choose -noinst_PROGRAMS=trackname +noinst_PROGRAMS=trackname endian AM_CPPFLAGS=-I${top_srcdir}/lib -I../lib disorderd_SOURCES=disorderd.c api.c api-server.c daemonize.c play.c \ server.c server-queue.c queue-ops.c state.c plugin.c \ - schedule.c exports.c ../lib/memgc.c disorder-server.h + schedule.c dbparams.c background.c \ + exports.c ../lib/memgc.c disorder-server.h disorderd_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ $(LIBPCRE) $(LIBDB) $(LIBAO) $(LIBGC) $(LIBGCRYPT) $(LIBICONV) \ $(LIBASOUND) $(COREAUDIO) @@ -39,14 +38,10 @@ disorder_deadlock_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ $(LIBDB) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) disorder_deadlock_DEPENDENCIES=../lib/libdisorder.a -disorder_speaker_SOURCES=speaker.c speaker.h \ - speaker-command.c \ - speaker-network.c \ - speaker-coreaudio.c \ - speaker-oss.c \ - speaker-alsa.c +disorder_speaker_SOURCES=speaker.c disorder_speaker_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ - $(LIBASOUND) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) $(COREAUDIO) + $(LIBASOUND) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) $(COREAUDIO) \ + $(LIBPTHREAD) disorder_speaker_DEPENDENCIES=../lib/libdisorder.a disorder_decode_SOURCES=decode.c disorder-server.h @@ -69,7 +64,7 @@ disorder_rescan_DEPENDENCIES=../lib/libdisorder.a disorder_choose_SOURCES=choose.c server-queue.c ../lib/memgc.c \ disorder-server.h disorder_choose_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ - $(LIBDB) $(LIBGC) $(LIBPCRE) $(LIBGCRYPT) + $(LIBDB) $(LIBGC) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) disorder_choose_LDFLAGS=-export-dynamic disorder_choose_DEPENDENCIES=../lib/libdisorder.a @@ -119,20 +114,42 @@ check-help: all ./disorder-dbupgrade --version > /dev/null ./disorder-rescan --help > /dev/null ./disorder-rescan --version > /dev/null + ./disorder-choose --help > /dev/null + ./disorder-choose --version > /dev/null -# My sox doesn't know MP3 or FLAC unfortunately -check-decode: disorder-decode disorder-normalize +check-decode: disorder-decode disorder-normalize endian echo "speaker_backend network" > config - echo "broadcast 127.255.255.255 discard" > config + echo "broadcast 127.255.255.255 9" > config + oggdec -b 16 -e `./endian` -R -s 1 -o oggdec.raw ${top_srcdir}/sounds/scratch.ogg + @$(MAKE) check-ogg + @$(MAKE) check-wav + @if which flac >/dev/null 2>&1; then $(MAKE) check-flac; fi + rm -f config oggdec.raw + +# TODO mp3 - but sox doesn't (reliably) know how to encode to it + +check-ogg: ./disorder-decode ${top_srcdir}/sounds/scratch.ogg | \ - ./disorder-normalize --config config > decoded.raw - oggdec -b 16 -e 1 -R -s 1 -o oggdec.raw ${top_srcdir}/sounds/scratch.ogg - cmp decoded.raw oggdec.raw + ./disorder-normalize --config config > ogged.raw + cmp ogged.raw oggdec.raw + rm -f ogged.raw + +check-wav: sox ${top_srcdir}/sounds/scratch.ogg scratch.wav ./disorder-decode scratch.wav | \ - ./disorder-normalize --config config > decoded.raw - ls -l *.raw - cmp decoded.raw oggdec.raw - rm -f scratch.wav config decoded.raw oggdec.raw + ./disorder-normalize --config config > waved.raw + cmp waved.raw oggdec.raw + rm -rf scratch.wav waved.raw + +check-flac: + rm -f scratch.wav scratch.flac + sox ${top_srcdir}/sounds/scratch.ogg scratch.wav + flac scratch.wav + ./disorder-decode scratch.flac | \ + ./disorder-normalize --config config > flacced.raw + cmp flacced.raw oggdec.raw + rm -f scratch.flac scratch.wav flacced.raw EXTRA_DIST=README.dbversions + +CLEANFILES=*.gcda *.gcov *.gcno *.c.html index.html