chiark / gitweb /
help menu can now pop up the man page
[disorder] / lib / Makefile.am
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
622cdeda 3# Copyright (C) 2004, 2005, 2006, s007 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 \
13affe66 41 html.c html.h \
81b1bf12 42 ifreq.c ifreq.h \
460b9539 43 inputline.c inputline.h \
44 kvp.c kvp.h \
45 log.c log.h log-impl.h \
46 logfd.c logfd.h \
47 mem.c mem.h mem-impl.h \
48 mime.h mime.c \
49 mixer.c mixer.h \
50 plugin.c plugin.h \
51 printf.c printf.h \
52 asprintf.c fprintf.c snprintf.c \
53 queue.c queue.h \
54 regsub.c regsub.h \
e83d0967 55 rtp.h \
460b9539 56 selection.c selection.h \
57 signame.c signame.h \
58 sink.c sink.h \
ea410ba1 59 speaker-protocol.c speaker-protocol.h \
460b9539 60 split.c split.h \
61 syscalls.c syscalls.h \
62 types.h \
63 table.c table.h \
e83d0967 64 timeval.h \
460b9539 65 trackname.c trackname.h \
66 user.h user.c \
67 utf8.h utf8.c \
68 vacopy.h \
69 vector.c vector.h \
ce6c36be 70 wav.h wav.c \
460b9539 71 words.c words.h casefold.h unicodegc.h \
72 wstat.c wstat.h \
73 disorder.h
460b9539 74
75definitions.h: Makefile
76 rm -f $@.new
77 echo "#define PKGLIBDIR \"${pkglibdir}\"" > $@.new
78 echo "#define PKGCONFDIR \"${sysconfdir}/\"PACKAGE" >> $@.new
79 echo "#define PKGSTATEDIR \"${localstatedir}/\"PACKAGE" >> $@.new
80 echo "#define PKGDATADIR \"${pkgdatadir}/\"" >> $@.new
e83d0967
RK
81 echo "#define SBINDIR \"${sbindir}/\"" >> $@.new
82 echo "#define BINDIR \"${bindir}/\"" >> $@.new
83 echo "#define FINKBINDIR \"${finkbindir}/\"" >> $@.new
66ec39ed
RK
84 @if cmp $@.new $@; then \
85 echo rm -f $@.new; rm -f $@.new; else \
86 echo mv $@.new $@; mv $@.new $@; fi
460b9539 87defs.o: definitions.h
88defs.lo: definitions.h
89
90test_SOURCES=test.c
320598d4 91test_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV)
0b861e97 92test_DEPENDENCIES=libdisorder.a
460b9539 93
033fd4e3 94check: test #test.i
460b9539 95 ./test
96
033fd4e3
RK
97%.i: %.c
98 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) -c $< > $@.new
99 mv $@.new $@
100
66ec39ed 101CLEANFILES=definitions.h definitions.h.new