chiark / gitweb /
README, debian/control: Deprecate `sox' support.
[disorder] / clients / Makefile.am
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
9e42afcd 3# Copyright (C) 2006-2009, 2011-2013 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
3e1d9716
MW
19VPATH+=${top_srcdir}/common
20
0b75463f 21bin_PROGRAMS=disorder disorderfm disorder-playrtp
929f577e 22noinst_PROGRAMS=filename-bytes rtpmon resample
e9b635a3 23noinst_SCRIPTS=dump2wav
460b9539 24
3f5b2351 25AUTOMAKE_OPTIONS=subdir-objects
460b9539 26AM_CPPFLAGS=-I${top_srcdir}/lib -I../lib
27
3e1d9716
MW
28disorder_SOURCES=disorder.c authorize.c authorize.h
29nodist_disorder_SOURCES=memgc.c
0b861e97 30disorder_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
1be9101e 31 $(LIBGC) $(LIBGCRYPT) $(LIBPCRE) $(LIBICONV) $(LIBPTHREAD)
0b861e97 32disorder_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
460b9539 33
3e1d9716
MW
34disorderfm_SOURCES=disorderfm.c
35nodist_disorderfm_SOURCES=memgc.c
3a8b42d3 36disorderfm_LDADD=$(LIBOBJS) ../lib/libdisorder.a $(LIBGC) $(LIBICONV)
0b861e97 37disorderfm_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
0b75463f 38
7a2c7068 39disorder_playrtp_SOURCES=playrtp.c playrtp.h playrtp-mem.c
de0ef46e 40disorder_playrtp_CFLAGS=$(PULSEAUDIO_CFLAGS) $(PULSEAUDIO_SIMPLE_CFLAGS)
9086a105 41disorder_playrtp_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
edbd470f 42 $(LIBASOUND) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) $(COREAUDIO) \
de0ef46e 43 $(LIBPTHREAD) $(PULSEAUDIO_SIMPLE_LIBS) $(PULSEAUDIO_LIBS) -lm
0b75463f 44disorder_playrtp_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
460b9539 45
210d172f
RK
46rtpmon_SOURCES=rtpmon.c
47rtpmon_LDADD=$(LIBOBJS) ../lib/libdisorder.a
48
460b9539 49filename_bytes_SOURCES=filename-bytes.c
50
929f577e
RK
51resample_SOURCES=resample.c
52resample_LDADD=$(LIBOBJS) ../lib/libdisorder.a $(LIBSAMPLERATE)
53
460b9539 54check: check-help check-completions
55
5fa6c4f8 56# check everything has working --help and --version
460b9539 57check-help: all
58 ./disorder --version > /dev/null
59 ./disorder --help > /dev/null
60 ./disorder --help-commands > /dev/null
ba789897
RK
61 ./disorderfm --version > /dev/null
62 ./disorderfm --help > /dev/null
63 ./disorder-playrtp --version > /dev/null
64 ./disorder-playrtp --help > /dev/null
460b9539 65
66# check that the command completions are up to date
69669351 67check-completions: disorder
460b9539 68 ./disorder --help-commands \
69 | awk '/^ [a-z]/ { print $$1 }' \
70 | sort > ,commands
71 ( set -e;completions() { \
72 for x; do \
73 case $$x in\
74 quack ) ;;\
75 [a-z]* ) echo $$x; ;;\
76 esac;\
77 done;\
78 }; \
79 complete() { if [ "$$7" = disorder ]; then completions $$6; fi }; \
80 . ${top_srcdir}/scripts/completion.bash )\
81 | sort > ,completions
82 diff -u ,commands ,completions
83
67e8149c
RK
84CLEANFILES=,commands ,completions \
85 *.gcda *.gcov *.gcno *.c.html index.html
2734a0d5 86
9e42afcd 87EXTRA_DIST=dump2wav disorder.vcxproj disorder.vcxproj.filters