chiark / gitweb /
disorder-udplog exits more reliably when parent dies
[disorder] / lib / Makefile.am
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
f486ea18 3# Copyright (C) 2004, 2005, 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
0b861e97 21noinst_LIBRARIES=libdisorder.a
460b9539 22include_HEADERS=disorder.h
23noinst_PROGRAMS=test
24
0b861e97 25libdisorder_a_SOURCES=charset.c charset.h \
460b9539 26 addr.c addr.h \
27 authhash.c authhash.h \
28 basen.c basen.h \
29 cache.c cache.h \
30 client.c client.h \
31 client-common.c client-common.h \
32 configuration.c configuration.h \
33 defs.c defs.h \
34 eclient.c eclient.h \
35 event.c event.h \
36 eventlog.c eventlog.h \
37 filepart.c filepart.h \
38 hash.c hash.h \
22168975 39 heap.h \
460b9539 40 hex.c hex.h \
81b1bf12 41 ifreq.c ifreq.h \
460b9539 42 inputline.c inputline.h \
43 kvp.c kvp.h \
44 log.c log.h log-impl.h \
45 logfd.c logfd.h \
46 mem.c mem.h mem-impl.h \
47 mime.h mime.c \
48 mixer.c mixer.h \
49 plugin.c plugin.h \
50 printf.c printf.h \
51 asprintf.c fprintf.c snprintf.c \
52 queue.c queue.h \
53 regsub.c regsub.h \
e83d0967 54 rtp.h \
460b9539 55 selection.c selection.h \
56 signame.c signame.h \
57 sink.c sink.h \
ea410ba1 58 speaker-protocol.c speaker-protocol.h \
460b9539 59 split.c split.h \
60 syscalls.c syscalls.h \
61 types.h \
62 table.c table.h \
e83d0967 63 timeval.h \
460b9539 64 trackname.c trackname.h \
65 user.h user.c \
e5a5a138 66 unicode.h unicode.c \
61507e3c 67 unidata.h unidata.c \
460b9539 68 vacopy.h \
69 vector.c vector.h \
ce6c36be 70 wav.h wav.c \
460b9539 71 wstat.c wstat.h \
72 disorder.h
460b9539 73
a05e4467
RK
74version-string: ../config.status ${top_srcdir}/scripts/make-version-string
75 CC="${CC}" ${top_srcdir}/scripts/make-version-string > $@.new
76 @if cmp $@.new $@; then \
77 echo rm -f $@.new; rm -f $@.new; else \
78 echo mv $@.new $@; mv $@.new $@; fi
79
80version.h: version-string ${top_srcdir}/scripts/text2c
81 ${top_srcdir}/scripts/text2c -extern disorder_version_string \
82 version-string > $@.new
83 @if cmp $@.new $@; then \
84 echo rm -f $@.new; rm -f $@.new; else \
85 echo mv $@.new $@; mv $@.new $@; fi
86
460b9539 87definitions.h: Makefile
88 rm -f $@.new
89 echo "#define PKGLIBDIR \"${pkglibdir}\"" > $@.new
90 echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
91 echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
92 echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
e83d0967
RK
93 echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
94 echo "#define BINDIR \"${bindir}/\"" >> $@.new
95 echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
f486ea18 96 echo "#define DOCDIR \"${docdir}/\"" >> $@.new
66ec39ed
RK
97 @if cmp $@.new $@; then \
98 echo rm -f $@.new; rm -f $@.new; else \
99 echo mv $@.new $@; mv $@.new $@; fi
a05e4467
RK
100defs.o: definitions.h version.h
101defs.lo: definitions.h version.h
460b9539 102
fe575537
RK
103test_SOURCES=test.c memgc.c
104test_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
0b861e97 105test_DEPENDENCIES=libdisorder.a
460b9539 106
033fd4e3 107check: test #test.i
460b9539 108 ./test
109
fbd54d8e
RK
110check-report: before-check check make-coverage-reports
111before-check:
112 rm -f *.gcda *.gcov
113make-coverage-reports:
3d853cec 114 ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c
fbd54d8e 115
e5a5a138
RK
116rebuild-unicode:
117 cd ${srcdir} && ${top_srcdir}/scripts/make-unidata
118
033fd4e3
RK
119%.i: %.c
120 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) -c $< > $@.new
121 mv $@.new $@
122
66ec39ed 123CLEANFILES=definitions.h definitions.h.new