chiark / gitweb /
abolish linked list of packets. (linux still to do.)
[disorder] / clients / Makefile.am
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
622cdeda 3# Copyright (C) 2006, 2007 Richard Kettlewell
460b9539 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 2 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, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# 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, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18# USA
19#
20
0b75463f 21bin_PROGRAMS=disorder disorderfm disorder-playrtp
460b9539 22noinst_PROGRAMS=test-eclient filename-bytes
23
24AM_CPPFLAGS=-I${top_srcdir}/lib -I../lib
25
320598d4
RK
26disorder_SOURCES=disorder.c authorize.c authorize.h \
27 ../lib/memgc.c
0b861e97 28disorder_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
29 $(LIBDL) $(LIBGC) $(LIBGCRYPT) $(LIBPCRE)
30disorder_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
460b9539 31
320598d4
RK
32disorderfm_SOURCES=disorderfm.c \
33 ../lib/memgc.c
3a8b42d3 34disorderfm_LDADD=$(LIBOBJS) ../lib/libdisorder.a $(LIBGC) $(LIBICONV)
0b861e97 35disorderfm_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
0b75463f 36
37disorder_playrtp_SOURCES=playrtp.c
9086a105
RK
38disorder_playrtp_LDADD=$(LIBOBJS) ../lib/libdisorder.a \
39 $(LIBASOUND) $(COREAUDIO)
0b75463f 40disorder_playrtp_DEPENDENCIES=$(LIBOBJS) ../lib/libdisorder.a
460b9539 41
42filename_bytes_SOURCES=filename-bytes.c
43
320598d4
RK
44test_eclient_SOURCES=test-eclient.c \
45 ../lib/memgc.c
0b861e97 46test_eclient_LDADD=../lib/libdisorder.a \
47 $(LIBDL) $(LIBGC) $(LIBGCRYPT) $(LIBPCRE)
48test_eclient_DEPENDENCIES=../lib/libdisorder.a
460b9539 49
50install-exec-hook:
51 $(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
52
53check: check-help check-completions
54
55# check everything has working --help
56check-help: all
57 ./disorder --version > /dev/null
58 ./disorder --help > /dev/null
59 ./disorder --help-commands > /dev/null
60
61# check that the command completions are up to date
62check-completions:
63 ./disorder --help-commands \
64 | awk '/^ [a-z]/ { print $$1 }' \
65 | sort > ,commands
66 ( set -e;completions() { \
67 for x; do \
68 case $$x in\
69 quack ) ;;\
70 [a-z]* ) echo $$x; ;;\
71 esac;\
72 done;\
73 }; \
74 complete() { if [ "$$7" = disorder ]; then completions $$6; fi }; \
75 . ${top_srcdir}/scripts/completion.bash )\
76 | sort > ,completions
77 diff -u ,commands ,completions
78
79CLEANFILES=,commands ,completions