chiark / gitweb /
f762799aa8d0bb60d1e40d8635c7a670ca71e1ae
[disorder] / clients / Makefile.am
1 #
2 # This file is part of DisOrder.
3 # Copyright (C) 2006-2008 Richard Kettlewell
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
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
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19 bin_PROGRAMS=disorder disorderfm disorder-playrtp
20 noinst_PROGRAMS=filename-bytes
21 noinst_SCRIPTS=dump2wav
22
23 AM_CPPFLAGS=-I${top_srcdir}/lib -I../lib
24
25 disorder_SOURCES=disorder.c authorize.c authorize.h \
26         ../lib/memgc.c
27 disorder_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
28         $(LIBGC) $(LIBGCRYPT) $(LIBPCRE) $(LIBDB)
29 disorder_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
30
31 disorderfm_SOURCES=disorderfm.c \
32         ../lib/memgc.c
33 disorderfm_LDADD=$(LIBOBJS) ../lib/libdisorder.a $(LIBGC) $(LIBICONV)
34 disorderfm_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
35
36 disorder_playrtp_SOURCES=playrtp.c playrtp.h playrtp-mem.c \
37                          playrtp-alsa.c playrtp-coreaudio.c playrtp-oss.c
38 disorder_playrtp_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
39         $(LIBASOUND) $(LIBPCRE) $(LIBICONV) $(LIBGCRYPT) $(COREAUDIO) \
40         $(LIBDB) $(LIBPTHREAD)
41 disorder_playrtp_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
42
43 filename_bytes_SOURCES=filename-bytes.c
44
45 install-exec-hook:
46         $(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
47
48 check: check-help check-completions
49
50 # check everything has working --help and --version
51 check-help: all
52         ./disorder --version > /dev/null
53         ./disorder --help > /dev/null
54         ./disorder --help-commands > /dev/null
55         ./disorderfm --version > /dev/null
56         ./disorderfm --help > /dev/null
57         ./disorder-playrtp --version > /dev/null
58         ./disorder-playrtp --help > /dev/null
59
60 # check that the command completions are up to date
61 check-completions: disorder
62         ./disorder --help-commands \
63                 | awk '/^  [a-z]/ { print $$1 }' \
64                 | sort > ,commands
65         ( set -e;completions() { \
66             for x; do \
67               case $$x in\
68                 quack ) ;;\
69                 [a-z]* ) echo $$x; ;;\
70               esac;\
71             done;\
72            }; \
73            complete() { if [ "$$7" = disorder ]; then completions $$6; fi }; \
74            . ${top_srcdir}/scripts/completion.bash )\
75                 | sort > ,completions
76         diff -u ,commands ,completions
77
78 CLEANFILES=,commands ,completions
79
80 EXTRA_DIST=dump2wav