chiark / gitweb /
Move tests into their own directory. Means you can 'make -C lib'
[disorder] / lib / Makefile.am
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
4dadf1a2 3# Copyright (C) 2004-2008 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
460b9539 23
e63c38e8
RK
24if SERVER
25TRACKDB=trackdb.c
26else
27TRACKDB=trackdb-stub.c
28endif
29
0b861e97 30libdisorder_a_SOURCES=charset.c charset.h \
460b9539 31 addr.c addr.h \
4dadf1a2 32 alsabg.c alsabg.h \
fcdff139 33 arcfour.c arcfour.h \
460b9539 34 authhash.c authhash.h \
35 basen.c basen.h \
fce810c2 36 base64.c base64.h \
f9d42b20 37 bits.c bits.h \
460b9539 38 cache.c cache.h \
5b708e0c 39 cgi.c cgi.h \
460b9539 40 client.c client.h \
41 client-common.c client-common.h \
42 configuration.c configuration.h \
b12be54a 43 cookies.c cookies.h \
d436bd52 44 dateparse.c dateparse.h xgetdate.c \
460b9539 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 \
22168975 51 heap.h \
460b9539 52 hex.c hex.h \
bb6ae3fb 53 hostname.c hostname.h \
81b1bf12 54 ifreq.c ifreq.h \
460b9539 55 inputline.c inputline.h \
56 kvp.c kvp.h \
57 log.c log.h log-impl.h \
58 logfd.c logfd.h \
f640bcb3 59 macros.c macros-builtin.c macros.h \
460b9539 60 mem.c mem.h mem-impl.h \
61 mime.h mime.c \
b25aac59 62 mixer.c mixer.h mixer-oss.c mixer-alsa.c \
460b9539 63 plugin.c plugin.h \
64 printf.c printf.h \
65 asprintf.c fprintf.c snprintf.c \
66 queue.c queue.h \
fcdff139 67 random.c random.h \
460b9539 68 regsub.c regsub.h \
938d8157 69 rights.c queue-rights.c rights.h \
e83d0967 70 rtp.h \
460b9539 71 selection.c selection.h \
bb6ae3fb 72 sendmail.c sendmail.h \
460b9539 73 signame.c signame.h \
74 sink.c sink.h \
ea410ba1 75 speaker-protocol.c speaker-protocol.h \
460b9539 76 split.c split.h \
77 syscalls.c syscalls.h \
78 types.h \
79 table.c table.h \
e83d0967 80 timeval.h \
e63c38e8 81 $(TRACKDB) trackdb.h trackdb-int.h \
e307c6fe 82 trackname.c trackorder.c trackname.h \
36bde473 83 url.h url.c \
460b9539 84 user.h user.c \
e5a5a138 85 unicode.h unicode.c \
61507e3c 86 unidata.h unidata.c \
460b9539 87 vacopy.h \
88 vector.c vector.h \
3fbdc96d 89 version.c version.h \
ce6c36be 90 wav.h wav.c \
460b9539 91 wstat.c wstat.h \
92 disorder.h
460b9539 93
a05e4467
RK
94version-string: ../config.status ${top_srcdir}/scripts/make-version-string
95 CC="${CC}" ${top_srcdir}/scripts/make-version-string > $@.new
96 @if cmp $@.new $@; then \
97 echo rm -f $@.new; rm -f $@.new; else \
98 echo mv $@.new $@; mv $@.new $@; fi
99
3fbdc96d 100versionstring.h: version-string ${top_srcdir}/scripts/text2c
a05e4467
RK
101 ${top_srcdir}/scripts/text2c -extern disorder_version_string \
102 version-string > $@.new
103 @if cmp $@.new $@; then \
104 echo rm -f $@.new; rm -f $@.new; else \
105 echo mv $@.new $@; mv $@.new $@; fi
106
460b9539 107definitions.h: Makefile
108 rm -f $@.new
109 echo "#define PKGLIBDIR \"${pkglibdir}\"" > $@.new
110 echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
111 echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
112 echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
e83d0967
RK
113 echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
114 echo "#define BINDIR \"${bindir}/\"" >> $@.new
115 echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
66ec39ed
RK
116 @if cmp $@.new $@; then \
117 echo rm -f $@.new; rm -f $@.new; else \
118 echo mv $@.new $@; mv $@.new $@; fi
3fbdc96d
RK
119defs.o: definitions.h versionstring.h
120defs.lo: definitions.h versionstring.h
460b9539 121
e5a5a138
RK
122rebuild-unicode:
123 cd ${srcdir} && ${top_srcdir}/scripts/make-unidata
124
033fd4e3
RK
125%.i: %.c
126 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) -c $< > $@.new
127 mv $@.new $@
128
66ec39ed 129CLEANFILES=definitions.h definitions.h.new
e63c38e8 130
7affb407 131EXTRA_DIST=trackdb.c trackdb-stub.c