chiark / gitweb /
Bring CGI docs pretty much up to date
[disorder] / lib / Makefile.am
... / ...
CommitLineData
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
21TESTS=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
27noinst_LIBRARIES=libdisorder.a
28include_HEADERS=disorder.h
29noinst_PROGRAMS=$(TESTS)
30
31if SERVER
32TRACKDB=trackdb.c
33else
34TRACKDB=trackdb-stub.c
35endif
36
37libdisorder_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
98version-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
104versionstring.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
111definitions.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
123defs.o: definitions.h versionstring.h
124defs.lo: definitions.h versionstring.h
125
126t_addr_SOURCES=t-addr.c test.c test.h
127t_addr_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
128t_addr_DEPENDENCIES=libdisorder.a
129
130t_basen_SOURCES=t-basen.c test.c test.h
131t_basen_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
132t_basen_DEPENDENCIES=libdisorder.a
133
134t_bits_SOURCES=t-bits.c test.c test.h
135t_bits_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
136t_bits_DEPENDENCIES=libdisorder.a
137
138t_cache_SOURCES=t-cache.c test.c test.h
139t_cache_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
140t_cache_DEPENDENCIES=libdisorder.a
141
142t_casefold_SOURCES=t-casefold.c test.c test.h
143t_casefold_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
144t_casefold_DEPENDENCIES=libdisorder.a
145
146t_cgi_SOURCES=t-cgi.c test.c test.h
147t_cgi_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
148t_cgi_DEPENDENCIES=libdisorder.a
149
150t_cookies_SOURCES=t-cookies.c test.c test.h
151t_cookies_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
152t_cookies_DEPENDENCIES=libdisorder.a
153
154t_filepart_SOURCES=t-filepart.c test.c test.h
155t_filepart_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
156t_filepart_DEPENDENCIES=libdisorder.a
157
158t_hash_SOURCES=t-hash.c test.c test.h
159t_hash_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
160t_hash_DEPENDENCIES=libdisorder.a
161
162t_heap_SOURCES=t-heap.c test.c test.h
163t_heap_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
164t_heap_DEPENDENCIES=libdisorder.a
165
166t_hex_SOURCES=t-hex.c test.c test.h
167t_hex_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
168t_hex_DEPENDENCIES=libdisorder.a
169
170t_kvp_SOURCES=t-kvp.c test.c test.h
171t_kvp_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
172t_kvp_DEPENDENCIES=libdisorder.a
173
174t_macros_SOURCES=t-macros.c test.c test.h
175t_macros_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
176t_macros_DEPENDENCIES=libdisorder.a
177
178t_mime_SOURCES=t-mime.c test.c test.h
179t_mime_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
180t_mime_DEPENDENCIES=libdisorder.a
181
182t_printf_SOURCES=t-printf.c test.c test.h
183t_printf_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
184t_printf_DEPENDENCIES=libdisorder.a
185
186t_regsub_SOURCES=t-regsub.c test.c test.h
187t_regsub_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
188t_regsub_DEPENDENCIES=libdisorder.a
189
190t_selection_SOURCES=t-selection.c test.c test.h
191t_selection_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
192t_selection_DEPENDENCIES=libdisorder.a
193
194t_signame_SOURCES=t-signame.c test.c test.h
195t_signame_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
196t_signame_DEPENDENCIES=libdisorder.a
197
198t_sink_SOURCES=t-sink.c test.c test.h
199t_sink_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
200t_sink_DEPENDENCIES=libdisorder.a
201
202t_split_SOURCES=t-split.c test.c test.h
203t_split_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
204t_split_DEPENDENCIES=libdisorder.a
205
206t_syscalls_SOURCES=t-syscalls.c test.c test.h
207t_syscalls_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
208t_syscalls_DEPENDENCIES=libdisorder.a
209
210t_trackname_SOURCES=t-trackname.c test.c test.h
211t_trackname_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
212t_trackname_DEPENDENCIES=libdisorder.a
213
214t_unicode_SOURCES=t-unicode.c test.c test.h
215t_unicode_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
216t_unicode_DEPENDENCIES=libdisorder.a
217
218t_url_SOURCES=t-url.c test.c test.h
219t_url_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
220t_url_DEPENDENCIES=libdisorder.a
221
222t_utf8_SOURCES=t-utf8.c test.c test.h
223t_utf8_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
224t_utf8_DEPENDENCIES=libdisorder.a
225
226t_vector_SOURCES=t-vector.c test.c test.h
227t_vector_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
228t_vector_DEPENDENCIES=libdisorder.a
229
230t_words_SOURCES=t-words.c test.c test.h
231t_words_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
232t_words_DEPENDENCIES=libdisorder.a
233
234t_wstat_SOURCES=t-wstat.c test.c test.h
235t_wstat_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
236t_wstat_DEPENDENCIES=libdisorder.a
237
238check-report: before-check check make-coverage-reports
239before-check:
240 rm -f *.gcda *.gcov
241make-coverage-reports:
242 ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c
243
244rebuild-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
251CLEANFILES=definitions.h definitions.h.new
252
253EXTRA_DIST=trackdb.c trackdb-stub.c t-macros-1.tmpl t-macros-2