chiark / gitweb /
Disobedience: basic support for required/prohibited tags.
[disorder] / lib / Makefile.am
... / ...
CommitLineData
1#
2# This file is part of DisOrder.
3# Copyright (C) 2004-2009 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
19noinst_LIBRARIES=libdisorder.a
20include_HEADERS=disorder.h
21
22if SERVER
23TRACKDB=trackdb.c trackdb-playlists.c
24else
25TRACKDB=trackdb-stub.c
26endif
27
28libdisorder_a_SOURCES=charset.c charsetf.c charset.h \
29 addr.c addr.h \
30 arcfour.c arcfour.h \
31 authhash.c authhash.h \
32 basen.c basen.h \
33 base64.c base64.h \
34 bits.c bits.h \
35 byte-order.h \
36 cache.c cache.h \
37 cgi.c cgi.h \
38 client.c client.h \
39 client-common.c client-common.h \
40 configuration.c configuration.h \
41 cookies.c cookies.h \
42 coreaudio.c coreaudio.h \
43 dateparse.c dateparse.h xgetdate.c \
44 defs.c defs.h \
45 eclient.c eclient.h \
46 email.c \
47 eventdist.c eventdist.h \
48 event.c event.h \
49 eventlog.c eventlog.h \
50 filepart.c filepart.h \
51 hash.c hash.h \
52 heap.h \
53 hex.c hex.h \
54 hostname.c hostname.h \
55 hreader.c hreader.h \
56 ifreq.c ifreq.h \
57 inputline.c inputline.h \
58 kvp.c kvp.h \
59 log.c log.h \
60 logfd.c logfd.h \
61 macros.c macros-builtin.c macros.h \
62 mem.c mem.h \
63 mime.h mime.c \
64 printf.c printf.h \
65 asprintf.c fprintf.c snprintf.c \
66 queue.c queue.h \
67 random.c random.h \
68 regsub.c regsub.h \
69 resample.c resample.h \
70 rights.c queue-rights.c rights.h \
71 rtp.h \
72 selection.c selection.h \
73 sendmail.c sendmail.h \
74 signame.c signame.h \
75 sink.c sink.h \
76 speaker-protocol.c speaker-protocol.h \
77 split.c split.h \
78 strptime.c strptime.h \
79 syscalls.c syscalls.h \
80 common.h \
81 table.c table.h \
82 timeval.h \
83 $(TRACKDB) trackdb.h trackdb-int.h \
84 trackname.c trackorder.c trackname.h \
85 tracksort.c \
86 uaudio.c uaudio-thread.c uaudio.h uaudio-apis.c \
87 uaudio-oss.c uaudio-alsa.c \
88 uaudio-coreaudio.c \
89 uaudio-rtp.c uaudio-command.c uaudio-schedule.c \
90 url.h url.c \
91 user.h user.c \
92 unicode.h unicode.c \
93 unidata.h unidata.c \
94 vacopy.h \
95 validity.c validity.h \
96 vector.c vector.h \
97 version.c version.h \
98 wav.h wav.c \
99 wstat.c wstat.h \
100 disorder.h
101
102version-string: ../config.status ${top_srcdir}/scripts/make-version-string
103 CC="${CC}" ${top_srcdir}/scripts/make-version-string > $@.new
104 @if cmp $@.new $@; then \
105 echo rm -f $@.new; rm -f $@.new; else \
106 echo mv $@.new $@; mv $@.new $@; fi
107
108versionstring.h: version-string ${top_srcdir}/scripts/text2c
109 ${top_srcdir}/scripts/text2c -extern disorder_version_string \
110 version-string > $@.new
111 @if cmp $@.new $@; then \
112 echo rm -f $@.new; rm -f $@.new; else \
113 echo mv $@.new $@; mv $@.new $@; fi
114
115definitions.h: Makefile
116 rm -f $@.new
117 echo "/** @file lib/definitions.h" >> $@.new
118 echo " * @brief Definitions exported from makefile" >> $@.new
119 echo " *" >> $@.new
120 echo " * DO NOT EDIT." >> $@.new
121 echo " */" >> $@.new
122 echo "#define PKGLIBDIR \"${pkglibdir}\"" >> $@.new
123 echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
124 echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
125 echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
126 echo "#define DOCHTMLDIR \"${dochtmldir}\"" >> $@.new
127 echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
128 echo "#define BINDIR \"${bindir}/\"" >> $@.new
129 echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
130 echo "#define SENDMAIL \"${SENDMAIL}\"" >> $@.new
131 @if cmp $@.new $@; then \
132 echo rm -f $@.new; rm -f $@.new; else \
133 echo mv $@.new $@; mv $@.new $@; fi
134defs.o: definitions.h versionstring.h
135defs.lo: definitions.h versionstring.h
136
137rebuild-unicode:
138 cd ${srcdir} && ${top_srcdir}/scripts/make-unidata
139
140CLEANFILES=definitions.h definitions.h.new version-string versionstring.h \
141 *.gcda *.gcov *.gcno *.c.html index.html
142
143EXTRA_DIST=trackdb.c trackdb-stub.c