X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/94a91e1bb7aee553111d249948e09a5ffbd08034..375d9478a5b6b14bfb5f6e1a054e900a18e40717:/server/Makefile.am diff --git a/server/Makefile.am b/server/Makefile.am index e73e090..27c8fdd 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -1,6 +1,6 @@ # # This file is part of DisOrder. -# Copyright (C) 2004-2009 Richard Kettlewell +# Copyright (C) 2004-2010 Richard Kettlewell # # 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 @@ -25,7 +25,7 @@ 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 dbparams.c background.c \ + schedule.c dbparams.c background.c mount.c \ exports.c ../lib/memgc.c disorder-server.h disorderd_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ $(LIBPCRE) $(LIBDB) $(LIBAO) $(LIBGC) $(LIBGCRYPT) $(LIBICONV) \ @@ -44,7 +44,8 @@ disorder_speaker_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ $(LIBPTHREAD) disorder_speaker_DEPENDENCIES=../lib/libdisorder.a -disorder_decode_SOURCES=decode.c disorder-server.h +disorder_decode_SOURCES=decode.c decode.h disorder-server.h \ +decode-mp3.c decode-ogg.c decode-wav.c decode-flac.c disorder_decode_LDADD=$(LIBOBJS) ../lib/libdisorder.a \ $(LIBMAD) $(LIBVORBISFILE) $(LIBFLAC) disorder_decode_DEPENDENCIES=../lib/libdisorder.a @@ -121,7 +122,7 @@ check-decode: check-wav check-flac check-mp3 check-mp3: disorder-decode disorder-normalize ./disorder-decode ${top_srcdir}/sounds/scratch.mp3 | \ - ./disorder-normalize --config test-config > mp3ed.raw + ./disorder-normalize --config ${srcdir}/test-config > mp3ed.raw cmp mp3ed.raw ${top_srcdir}/sounds/scratch-mp3.raw rm -f mp3ed.raw @@ -129,19 +130,19 @@ check-mp3: disorder-decode disorder-normalize # or something. Makes it tricky to test! check-ogg: disorder-decode disorder-normalize ./disorder-decode ${top_srcdir}/sounds/scratch.ogg | \ - ./disorder-normalize --config test-config > ogged.raw + ./disorder-normalize --config ${srcdir}/test-config > ogged.raw cmp ogged.raw ${top_srcdir}/sounds/scratch.raw rm -f ogged.raw check-wav: disorder-decode disorder-normalize ./disorder-decode ${top_srcdir}/sounds/scratch.wav | \ - ./disorder-normalize --config test-config > waved.raw + ./disorder-normalize --config ${srcdir}/test-config > waved.raw cmp waved.raw ${top_srcdir}/sounds/scratch.raw rm -rf waved.raw check-flac: disorder-decode disorder-normalize ./disorder-decode ${top_srcdir}/sounds/scratch.flac | \ - ./disorder-normalize --config test-config > flacced.raw + ./disorder-normalize --config ${srcdir}/test-config > flacced.raw cmp flacced.raw ${top_srcdir}/sounds/scratch.raw rm -f flacced.raw