]> git.meshlink.io Git - catta/blob - Makefile.am
* adds pkgconfig fixes for x86_64 (because pkgconfig files should be written in...
[catta] / Makefile.am
1 # $Id$
2
3 # This file is part of avahi.
4 #
5 # avahi is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or (at your option) any later version.
9 #
10 # avahi is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 # License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with avahi; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 ACLOCAL_AMFLAGS = -I common
21
22 include $(srcdir)/common/doxygen.mk
23
24 EXTRA_DIST = \
25         autogen.sh \
26         bootstrap.sh \
27         LICENSE \
28         $(DX_CONFIG) \
29         docs/INSTALL \
30         docs/TODO \
31         docs/NEWS \
32         docs/README \
33         docs/DBUS-API \
34         docs/AUTHORS \
35         docs/HACKING \
36         docs/API-CHANGES-0.6 \
37         docs/COMPAT-LAYERS \
38         docs/MALLOC \
39         docs/overview.dia \
40         docs/server-states.dia \
41         docs/avahi-poll.dia \
42         avahi-core.pc.in \
43         avahi-client.pc.in \
44         avahi-glib.pc.in \
45         avahi-qt3.pc.in \
46         avahi-qt4.pc.in \
47         avahi-sharp.pc.in \
48         avahi-compat-libdns_sd.pc.in \
49         avahi-compat-howl.pc.in
50
51 SUBDIRS = \
52         common \
53         avahi-common \
54         avahi-glib \
55         avahi-core \
56         avahi-discover-standalone \
57         avahi-qt \
58         avahi-client \
59         avahi-daemon \
60         avahi-sharp \
61         initscript \
62         avahi-dnsconfd \
63         avahi-utils \
64         avahi-python \
65         examples \
66         man \
67         tests \
68         service-type-database \
69         avahi-compat-libdns_sd \
70         avahi-compat-howl 
71
72
73 DX_INPUT = \
74         $(srcdir)/avahi-core/core.h \
75         $(srcdir)/avahi-core/lookup.h \
76         $(srcdir)/avahi-core/publish.h \
77         $(srcdir)/avahi-common/address.h \
78         $(srcdir)/avahi-core/rr.h \
79         $(srcdir)/avahi-common/strlst.h \
80         $(srcdir)/avahi-common/alternative.h \
81         $(srcdir)/avahi-core/log.h \
82         $(srcdir)/avahi-common/defs.h \
83         $(srcdir)/avahi-client/client.h \
84         $(srcdir)/avahi-client/lookup.h \
85         $(srcdir)/avahi-client/publish.h \
86         $(srcdir)/avahi-common/error.h \
87         $(srcdir)/avahi-common/malloc.h \
88         $(srcdir)/avahi-common/domain.h \
89         $(srcdir)/avahi-common/watch.h \
90         $(srcdir)/avahi-common/simple-watch.h \
91         $(srcdir)/avahi-common/thread-watch.h \
92         $(srcdir)/avahi-glib/glib-watch.h \
93         $(srcdir)/avahi-glib/glib-malloc.h \
94         $(srcdir)/avahi-common/timeval.h \
95         $(srcdir)/avahi-qt/qt-watch.h
96
97 DX_EXAMPLE_PATH = $(srcdir)/examples
98
99 DX_EXAMPLE_PATTERNS = *.c
100
101 pkgconfigdir = $(libdir)/pkgconfig
102 pkgconfig_DATA = avahi-core.pc
103
104 avahi-core.pc: avahi-core.pc.in
105         sed -e 's,@prefix\@,$(prefix),g' \
106             -e 's,@libdir\@,$(libdir),g' \
107             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@
108
109 CLEANFILES = avahi-core.pc
110
111 if HAVE_DBUS
112
113 pkgconfig_DATA += avahi-client.pc
114
115 avahi-client.pc: avahi-client.pc.in
116         sed -e 's,@prefix\@,$(prefix),g' \
117             -e 's,@libdir\@,$(libdir),g' \
118             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@
119
120 CLEANFILES += avahi-client.pc
121
122 if ENABLE_COMPAT_HOWL
123
124 pkgconfig_DATA += avahi-compat-howl.pc
125
126 avahi-compat-howl.pc: avahi-compat-howl.pc.in
127         sed -e 's,@prefix\@,$(prefix),g' \
128             -e 's,@libdir\@,$(libdir),g' \
129             -e 's,@HOWL_COMPAT_VERSION\@,$(HOWL_COMPAT_VERSION),g' $< > $@
130
131 CLEANFILES += avahi-compat-howl.pc
132
133 endif
134
135 if ENABLE_COMPAT_LIBDNS_SD
136
137 pkgconfig_DATA += avahi-compat-libdns_sd.pc
138
139 avahi-compat-libdns_sd.pc: avahi-compat-libdns_sd.pc.in
140         sed -e 's,@prefix\@,$(prefix),g' \
141             -e 's,@libdir\@,$(libdir),g' \
142             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@
143
144 CLEANFILES += avahi-compat-libdns_sd.pc
145
146 endif
147
148 if HAVE_MONO
149
150 pkgconfig_DATA += avahi-sharp.pc
151
152 avahi-sharp.pc: avahi-sharp.pc.in
153         sed -e 's,@prefix\@,$(prefix),g' \
154             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' \
155             -e 's,@libdir\@,$(libdir),g' $< > $@
156
157 CLEANFILES += avahi-sharp.pc
158
159 endif
160
161 endif
162
163 if HAVE_GLIB
164
165 pkgconfig_DATA += avahi-glib.pc
166
167 avahi-glib.pc: avahi-glib.pc.in
168         sed -e 's,@prefix\@,$(prefix),g' \
169             -e 's,@libdir\@,$(libdir),g' \
170             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@
171
172 CLEANFILES += avahi-glib.pc
173
174 endif
175
176 if HAVE_QT3
177
178 pkgconfig_DATA += avahi-qt3.pc
179
180 avahi-qt3.pc: avahi-qt3.pc.in
181         sed -e 's,@prefix\@,$(prefix),g' \
182             -e 's,@libdir\@,$(libdir),g' \
183             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@
184
185 CLEANFILES += avahi-qt3.pc
186
187 endif
188
189 if HAVE_QT4
190
191 pkgconfig_DATA += avahi-qt4.pc
192
193 avahi-qt4.pc: avahi-qt4.pc.in
194         sed -e 's,@prefix\@,$(prefix),g' \
195             -e 's,@libdir\@,$(libdir),g' \
196             -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@
197
198 CLEANFILES += avahi-qt4.pc
199
200 endif
201
202 MOSTLYCLEANFILES = $(DX_CLEANFILES)
203
204 DISTCHECK_CONFIGURE_FLAGS = \
205         --disable-monodoc
206
207 homepage:
208         $(MAKE) -C man
209         scp avahi-daemon/*.introspect avahi-daemon/introspect.dtd avahi-daemon/introspect.xsl\
210             man/*.xml man/xmltoman.dtd man/xmltoman.xsl \
211             tango:www/avahi.org/tree/download/
212         rm -rf doxygen
213         $(MAKE) doxygen-run
214         ssh tango rm -rf www/avahi.org/tree/download/doxygen
215         scp -r doxygen/html tango:www/avahi.org/tree/download/doxygen