chiark / gitweb /
Fiddle with menu font size
[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
21noinst_LIBRARIES=libdisorder.a
22include_HEADERS=disorder.h
23
24if SERVER
25TRACKDB=trackdb.c
26else
27TRACKDB=trackdb-stub.c
28endif
29
30libdisorder_a_SOURCES=charset.c charset.h \
31 addr.c addr.h \
32 alsabg.c alsabg.h \
33 arcfour.c arcfour.h \
34 authhash.c authhash.h \
35 basen.c basen.h \
36 base64.c base64.h \
37 bits.c bits.h \
38 cache.c cache.h \
39 cgi.c cgi.h \
40 client.c client.h \
41 client-common.c client-common.h \
42 configuration.c configuration.h \
43 cookies.c cookies.h \
44 dateparse.c dateparse.h xgetdate.c \
45 defs.c defs.h \
46 eclient.c eclient.h \
47 event.c event.h \
48 eventlog.c eventlog.h \
49 filepart.c filepart.h \
50 hash.c hash.h \
51 heap.h \
52 hex.c hex.h \
53 hostname.c hostname.h \
54 ifreq.c ifreq.h \
55 inputline.c inputline.h \
56 kvp.c kvp.h \
57 log.c log.h log-impl.h \
58 logfd.c logfd.h \
59 macros.c macros-builtin.c macros.h \
60 mem.c mem.h mem-impl.h \
61 mime.h mime.c \
62 mixer.c mixer.h mixer-oss.c mixer-alsa.c \
63 printf.c printf.h \
64 asprintf.c fprintf.c snprintf.c \
65 queue.c queue.h \
66 random.c random.h \
67 regsub.c regsub.h \
68 rights.c queue-rights.c rights.h \
69 rtp.h \
70 selection.c selection.h \
71 sendmail.c sendmail.h \
72 signame.c signame.h \
73 sink.c sink.h \
74 speaker-protocol.c speaker-protocol.h \
75 split.c split.h \
76 syscalls.c syscalls.h \
77 types.h \
78 table.c table.h \
79 timeval.h \
80 $(TRACKDB) trackdb.h trackdb-int.h \
81 trackname.c trackorder.c trackname.h \
82 url.h url.c \
83 user.h user.c \
84 unicode.h unicode.c \
85 unidata.h unidata.c \
86 vacopy.h \
87 vector.c vector.h \
88 version.c version.h \
89 wav.h wav.c \
90 wstat.c wstat.h \
91 disorder.h
92
93version-string: ../config.status ${top_srcdir}/scripts/make-version-string
94 CC="${CC}" ${top_srcdir}/scripts/make-version-string > $@.new
95 @if cmp $@.new $@; then \
96 echo rm -f $@.new; rm -f $@.new; else \
97 echo mv $@.new $@; mv $@.new $@; fi
98
99versionstring.h: version-string ${top_srcdir}/scripts/text2c
100 ${top_srcdir}/scripts/text2c -extern disorder_version_string \
101 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
106definitions.h: Makefile
107 rm -f $@.new
108 echo "#define PKGLIBDIR \"${pkglibdir}\"" > $@.new
109 echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
110 echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
111 echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
112 echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
113 echo "#define BINDIR \"${bindir}/\"" >> $@.new
114 echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
115 @if cmp $@.new $@; then \
116 echo rm -f $@.new; rm -f $@.new; else \
117 echo mv $@.new $@; mv $@.new $@; fi
118defs.o: definitions.h versionstring.h
119defs.lo: definitions.h versionstring.h
120
121rebuild-unicode:
122 cd ${srcdir} && ${top_srcdir}/scripts/make-unidata
123
124%.i: %.c
125 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) -c $< > $@.new
126 mv $@.new $@
127
128CLEANFILES=definitions.h definitions.h.new
129
130EXTRA_DIST=trackdb.c trackdb-stub.c