chiark / gitweb /
Check correctly for the case where no player is found.
[disorder] / clients / Makefile.am
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
4778e044 3# Copyright (C) 2006-2009 Richard Kettlewell
460b9539 4#
e7eb3a27 5# This program is free software: you can redistribute it and/or modify
460b9539 6# it under the terms of the GNU General Public License as published by
e7eb3a27 7# the Free Software Foundation, either version 3 of the License, or
460b9539 8# (at your option) any later version.
9#
e7eb3a27
RK
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
460b9539 15# You should have received a copy of the GNU General Public License
e7eb3a27 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17#
18
0b75463f 19bin_PROGRAMS=disorder disorderfm disorder-playrtp
929f577e 20noinst_PROGRAMS=filename-bytes rtpmon resample
e9b635a3 21noinst_SCRIPTS=dump2wav
460b9539 22
23AM_CPPFLAGS=-I${top_srcdir}/lib -I../lib
24
320598d4
RK
25disorder_SOURCES=disorder.c authorize.c authorize.h \
26 ../lib/memgc.c
0b861e97 27disorder_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
a4766caa 28 $(LIBGC) $(LIBGCRYPT) $(LIBPCRE) $(LIBICONV) $(LIBDB) $(LIBPTHREAD)
0b861e97 29disorder_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
460b9539 30
320598d4
RK
31disorderfm_SOURCES=disorderfm.c \
32 ../lib/memgc.c
3a8b42d3 33disorderfm_LDADD=$(LIBOBJS) ../lib/libdisorder.a $(LIBGC) $(LIBICONV)
0b861e97 34disorderfm_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
0b75463f 35
7a2c7068 36disorder_playrtp_SOURCES=playrtp.c playrtp.h playrtp-mem.c
9086a105 37disorder_playrtp_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
edbd470f 38 $(LIBASOUND) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) $(COREAUDIO) \
b0619501 39 $(LIBDB) $(LIBPTHREAD) -lm
0b75463f 40disorder_playrtp_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
460b9539 41
210d172f
RK
42rtpmon_SOURCES=rtpmon.c
43rtpmon_LDADD=$(LIBOBJS) ../lib/libdisorder.a
44
460b9539 45filename_bytes_SOURCES=filename-bytes.c
46
929f577e
RK
47resample_SOURCES=resample.c
48resample_LDADD=$(LIBOBJS) ../lib/libdisorder.a $(LIBSAMPLERATE)
49
460b9539 50install-exec-hook:
51 $(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
52
53check: check-help check-completions
54
5fa6c4f8 55# check everything has working --help and --version
460b9539 56check-help: all
57 ./disorder --version > /dev/null
58 ./disorder --help > /dev/null
59 ./disorder --help-commands > /dev/null
ba789897
RK
60 ./disorderfm --version > /dev/null
61 ./disorderfm --help > /dev/null
62 ./disorder-playrtp --version > /dev/null
63 ./disorder-playrtp --help > /dev/null
460b9539 64
65# check that the command completions are up to date
69669351 66check-completions: disorder
460b9539 67 ./disorder --help-commands \
68 | awk '/^ [a-z]/ { print $$1 }' \
69 | sort > ,commands
70 ( set -e;completions() { \
71 for x; do \
72 case $$x in\
73 quack ) ;;\
74 [a-z]* ) echo $$x; ;;\
75 esac;\
76 done;\
77 }; \
78 complete() { if [ "$$7" = disorder ]; then completions $$6; fi }; \
79 . ${top_srcdir}/scripts/completion.bash )\
80 | sort > ,completions
81 diff -u ,commands ,completions
82
67e8149c
RK
83CLEANFILES=,commands ,completions \
84 *.gcda *.gcov *.gcno *.c.html index.html
2734a0d5
RK
85
86EXTRA_DIST=dump2wav