chiark / gitweb /
document new choose screen properly
[disorder] / lib / Makefile.am
1 #
2 # This file is part of DisOrder.
3 # Copyright (C) 2004-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 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
21 TESTS=t-addr t-basen t-bits t-cache t-casefold t-cookies \
22                 t-filepart t-hash t-heap t-hex t-kvp t-mime t-printf \
23                 t-regsub t-selection t-signame t-sink t-split t-syscalls \
24                 t-trackname t-unicode t-url t-utf8 t-vector t-words t-wstat \
25                 t-macros t-cgi
26
27 noinst_LIBRARIES=libdisorder.a
28 include_HEADERS=disorder.h
29 noinst_PROGRAMS=$(TESTS)
30
31 if SERVER
32 TRACKDB=trackdb.c
33 else
34 TRACKDB=trackdb-stub.c
35 endif
36
37 libdisorder_a_SOURCES=charset.c charset.h               \
38         addr.c addr.h                                   \
39         alsabg.c alsabg.h                               \
40         authhash.c authhash.h                           \
41         basen.c basen.h                                 \
42         base64.c base64.h                               \
43         bits.c bits.h                                   \
44         cache.c cache.h                                 \
45         cgi.c cgi.h                                     \
46         client.c client.h                               \
47         client-common.c client-common.h                 \
48         configuration.c configuration.h                 \
49         cookies.c cookies.h                             \
50         defs.c defs.h                                   \
51         eclient.c eclient.h                             \
52         event.c event.h                                 \
53         eventlog.c eventlog.h                           \
54         filepart.c filepart.h                           \
55         hash.c hash.h                                   \
56         heap.h                                          \
57         hex.c hex.h                                     \
58         hostname.c hostname.h                           \
59         ifreq.c ifreq.h                                 \
60         inputline.c inputline.h                         \
61         kvp.c kvp.h                                     \
62         log.c log.h log-impl.h                          \
63         logfd.c logfd.h                                 \
64         macros.c macros-builtin.c macros.h              \
65         mem.c mem.h mem-impl.h                          \
66         mime.h mime.c                                   \
67         mixer.c mixer.h mixer-oss.c mixer-alsa.c        \
68         plugin.c plugin.h                               \
69         printf.c printf.h                               \
70         asprintf.c fprintf.c snprintf.c                 \
71         queue.c queue.h                                 \
72         regsub.c regsub.h                               \
73         rights.c queue-rights.c rights.h                \
74         rtp.h                                           \
75         selection.c selection.h                         \
76         sendmail.c sendmail.h                           \
77         signame.c signame.h                             \
78         sink.c sink.h                                   \
79         speaker-protocol.c speaker-protocol.h           \
80         split.c split.h                                 \
81         syscalls.c syscalls.h                           \
82         types.h                                         \
83         table.c table.h                                 \
84         timeval.h                                       \
85         $(TRACKDB) trackdb.h trackdb-int.h              \
86         trackname.c trackorder.c trackname.h            \
87         url.h url.c                                     \
88         user.h user.c                                   \
89         unicode.h unicode.c                             \
90         unidata.h unidata.c                             \
91         vacopy.h                                        \
92         vector.c vector.h                               \
93         version.c version.h                             \
94         wav.h wav.c                                     \
95         wstat.c wstat.h                                 \
96         disorder.h
97
98 version-string: ../config.status ${top_srcdir}/scripts/make-version-string
99         CC="${CC}" ${top_srcdir}/scripts/make-version-string > $@.new
100         @if cmp $@.new $@; then \
101                 echo rm -f $@.new; rm -f $@.new; else \
102                 echo mv $@.new $@; mv $@.new $@; fi
103
104 versionstring.h: version-string ${top_srcdir}/scripts/text2c
105         ${top_srcdir}/scripts/text2c -extern disorder_version_string \
106                 version-string > $@.new
107         @if cmp $@.new $@; then \
108                 echo rm -f $@.new; rm -f $@.new; else \
109                 echo mv $@.new $@; mv $@.new $@; fi
110
111 definitions.h: Makefile
112         rm -f $@.new
113         echo "#define PKGLIBDIR \"${pkglibdir}\"" > $@.new
114         echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
115         echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
116         echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
117         echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
118         echo "#define BINDIR \"${bindir}/\"" >> $@.new
119         echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
120         @if cmp $@.new $@; then \
121                 echo rm -f $@.new; rm -f $@.new; else \
122                 echo mv $@.new $@; mv $@.new $@; fi
123 defs.o: definitions.h versionstring.h
124 defs.lo: definitions.h versionstring.h
125
126 t_addr_SOURCES=t-addr.c test.c test.h
127 t_addr_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
128 t_addr_DEPENDENCIES=libdisorder.a
129
130 t_basen_SOURCES=t-basen.c test.c test.h
131 t_basen_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
132 t_basen_DEPENDENCIES=libdisorder.a
133
134 t_bits_SOURCES=t-bits.c test.c test.h
135 t_bits_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
136 t_bits_DEPENDENCIES=libdisorder.a
137
138 t_cache_SOURCES=t-cache.c test.c test.h
139 t_cache_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
140 t_cache_DEPENDENCIES=libdisorder.a
141
142 t_casefold_SOURCES=t-casefold.c test.c test.h
143 t_casefold_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
144 t_casefold_DEPENDENCIES=libdisorder.a
145
146 t_cgi_SOURCES=t-cgi.c test.c test.h
147 t_cgi_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
148 t_cgi_DEPENDENCIES=libdisorder.a
149
150 t_cookies_SOURCES=t-cookies.c test.c test.h
151 t_cookies_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
152 t_cookies_DEPENDENCIES=libdisorder.a
153
154 t_filepart_SOURCES=t-filepart.c test.c test.h
155 t_filepart_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
156 t_filepart_DEPENDENCIES=libdisorder.a
157
158 t_hash_SOURCES=t-hash.c test.c test.h
159 t_hash_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
160 t_hash_DEPENDENCIES=libdisorder.a
161
162 t_heap_SOURCES=t-heap.c test.c test.h
163 t_heap_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
164 t_heap_DEPENDENCIES=libdisorder.a
165
166 t_hex_SOURCES=t-hex.c test.c test.h
167 t_hex_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
168 t_hex_DEPENDENCIES=libdisorder.a
169
170 t_kvp_SOURCES=t-kvp.c test.c test.h
171 t_kvp_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
172 t_kvp_DEPENDENCIES=libdisorder.a
173
174 t_macros_SOURCES=t-macros.c test.c test.h
175 t_macros_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
176 t_macros_DEPENDENCIES=libdisorder.a
177
178 t_mime_SOURCES=t-mime.c test.c test.h
179 t_mime_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
180 t_mime_DEPENDENCIES=libdisorder.a
181
182 t_printf_SOURCES=t-printf.c test.c test.h
183 t_printf_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
184 t_printf_DEPENDENCIES=libdisorder.a
185
186 t_regsub_SOURCES=t-regsub.c test.c test.h
187 t_regsub_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
188 t_regsub_DEPENDENCIES=libdisorder.a
189
190 t_selection_SOURCES=t-selection.c test.c test.h
191 t_selection_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
192 t_selection_DEPENDENCIES=libdisorder.a
193
194 t_signame_SOURCES=t-signame.c test.c test.h
195 t_signame_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
196 t_signame_DEPENDENCIES=libdisorder.a
197
198 t_sink_SOURCES=t-sink.c test.c test.h
199 t_sink_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
200 t_sink_DEPENDENCIES=libdisorder.a
201
202 t_split_SOURCES=t-split.c test.c test.h
203 t_split_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
204 t_split_DEPENDENCIES=libdisorder.a
205
206 t_syscalls_SOURCES=t-syscalls.c test.c test.h
207 t_syscalls_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
208 t_syscalls_DEPENDENCIES=libdisorder.a
209
210 t_trackname_SOURCES=t-trackname.c test.c test.h
211 t_trackname_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
212 t_trackname_DEPENDENCIES=libdisorder.a
213
214 t_unicode_SOURCES=t-unicode.c test.c test.h
215 t_unicode_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
216 t_unicode_DEPENDENCIES=libdisorder.a
217
218 t_url_SOURCES=t-url.c test.c test.h
219 t_url_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
220 t_url_DEPENDENCIES=libdisorder.a
221
222 t_utf8_SOURCES=t-utf8.c test.c test.h
223 t_utf8_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
224 t_utf8_DEPENDENCIES=libdisorder.a
225
226 t_vector_SOURCES=t-vector.c test.c test.h
227 t_vector_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
228 t_vector_DEPENDENCIES=libdisorder.a
229
230 t_words_SOURCES=t-words.c test.c test.h
231 t_words_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
232 t_words_DEPENDENCIES=libdisorder.a
233
234 t_wstat_SOURCES=t-wstat.c test.c test.h
235 t_wstat_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
236 t_wstat_DEPENDENCIES=libdisorder.a
237
238 check-report: before-check check make-coverage-reports
239 before-check:
240         rm -f *.gcda *.gcov
241 make-coverage-reports:
242         ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c
243
244 rebuild-unicode:
245         cd ${srcdir} && ${top_srcdir}/scripts/make-unidata
246
247 %.i: %.c
248         $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) -c $< > $@.new
249         mv $@.new $@
250
251 CLEANFILES=definitions.h definitions.h.new
252
253 EXTRA_DIST=trackdb.c trackdb-stub.c t-macros-1.tmpl t-macros-2