chiark / gitweb /
6a6596f245435542b2cddd2c7a69d2f29b386042
[disorder] / lib / Makefile.am
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
19 noinst_LIBRARIES=libdisorder.a
20 include_HEADERS=disorder.h
21
22 if SERVER
23 TRACKDB=trackdb.c
24 else
25 TRACKDB=trackdb-stub.c
26 endif
27
28 libdisorder_a_SOURCES=charset.c charset.h               \
29         addr.c addr.h                                   \
30         alsabg.c alsabg.h                               \
31         arcfour.c arcfour.h                             \
32         authhash.c authhash.h                           \
33         basen.c basen.h                                 \
34         base64.c base64.h                               \
35         bits.c bits.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         ifreq.c ifreq.h                                 \
56         inputline.c inputline.h                         \
57         kvp.c kvp.h                                     \
58         log.c log.h                                     \
59         logfd.c logfd.h                                 \
60         macros.c macros-builtin.c macros.h              \
61         mem.c mem.h                                     \
62         mime.h mime.c                                   \
63         mixer.c mixer.h mixer-oss.c mixer-alsa.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         rights.c queue-rights.c rights.h                \
70         rtp.h                                           \
71         selection.c selection.h                         \
72         sendmail.c sendmail.h                           \
73         signame.c signame.h                             \
74         sink.c sink.h                                   \
75         speaker-protocol.c speaker-protocol.h           \
76         split.c split.h                                 \
77         strptime.c strptime.h                           \
78         syscalls.c syscalls.h                           \
79         common.h                                        \
80         table.c table.h                                 \
81         timeval.h                                       \
82         $(TRACKDB) trackdb.h trackdb-int.h              \
83         trackname.c trackorder.c trackname.h            \
84         tracksort.c                                     \
85         uaudio.c uaudio-thread.c uaudio.h               \
86         uaudio-oss.c uaudio-alsa.c                      \
87         uaudio-coreaudio.c                              \
88         uaudio-rtp.c uaudio-command.c                   \
89         url.h url.c                                     \
90         user.h user.c                                   \
91         unicode.h unicode.c                             \
92         unidata.h unidata.c                             \
93         vacopy.h                                        \
94         vector.c vector.h                               \
95         version.c version.h                             \
96         wav.h wav.c                                     \
97         wstat.c wstat.h                                 \
98         disorder.h
99
100 version-string: ../config.status ${top_srcdir}/scripts/make-version-string
101         CC="${CC}" ${top_srcdir}/scripts/make-version-string > $@.new
102         @if cmp $@.new $@; then \
103                 echo rm -f $@.new; rm -f $@.new; else \
104                 echo mv $@.new $@; mv $@.new $@; fi
105
106 versionstring.h: version-string ${top_srcdir}/scripts/text2c
107         ${top_srcdir}/scripts/text2c -extern disorder_version_string \
108                 version-string > $@.new
109         @if cmp $@.new $@; then \
110                 echo rm -f $@.new; rm -f $@.new; else \
111                 echo mv $@.new $@; mv $@.new $@; fi
112
113 definitions.h: Makefile
114         rm -f $@.new
115         echo "/** @file lib/definitions.h" >> $@.new
116         echo " * @brief Definitions exported from makefile" >> $@.new
117         echo " *" >> $@.new
118         echo " * DO NOT EDIT." >> $@.new
119         echo " */" >> $@.new
120         echo "#define PKGLIBDIR \"${pkglibdir}\"" >> $@.new
121         echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
122         echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
123         echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
124         echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
125         echo "#define BINDIR \"${bindir}/\"" >> $@.new
126         echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
127         echo "#define SENDMAIL \"${SENDMAIL}\"" >> $@.new
128         @if cmp $@.new $@; then \
129                 echo rm -f $@.new; rm -f $@.new; else \
130                 echo mv $@.new $@; mv $@.new $@; fi
131 defs.o: definitions.h versionstring.h
132 defs.lo: definitions.h versionstring.h
133
134 rebuild-unicode:
135         cd ${srcdir} && ${top_srcdir}/scripts/make-unidata
136
137 %.i: %.c
138         $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) -c $< > $@.new
139         mv $@.new $@
140
141 CLEANFILES=definitions.h definitions.h.new version-string versionstring.h \
142            *.gcda *.gcov *.gcno *.c.html index.html
143
144 EXTRA_DIST=trackdb.c trackdb-stub.c