X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=Makefile.am;h=0411c74fdd545bce3925387f43caf6264dc3ba59;hb=be7ce5a2f7f46e48c391d9b9c7501e4e138fc8c5;hp=fce91f86067cb69df5bc76f2b5433e1d37103870;hpb=c565e9ad208e8c9aeaf94b02c56597a991b1597f;p=catta diff --git a/Makefile.am b/Makefile.am index fce91f8..0411c74 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,13 +17,256 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA. -EXTRA_DIST = bootstrap.sh LICENSE doxygen/Makefile.am doxygen/Makefile.in doxygen/doxygen.conf.in libtool.m4 -SUBDIRS = avahi-core +ACLOCAL_AMFLAGS = -I common + +include $(srcdir)/common/doxygen.mk + +EXTRA_DIST = \ + autogen.sh \ + bootstrap.sh \ + LICENSE \ + $(DX_CONFIG) \ + docs/INSTALL \ + docs/TODO \ + docs/NEWS \ + docs/README \ + docs/DBUS-API \ + docs/AUTHORS \ + docs/HACKING \ + docs/API-CHANGES-0.6 \ + docs/COMPAT-LAYERS \ + docs/MALLOC \ + docs/overview.dia \ + docs/server-states.dia \ + docs/avahi-poll.dia \ + avahi-core.pc.in \ + avahi-client.pc.in \ + avahi-glib.pc.in \ + avahi-qt3.pc.in \ + avahi-qt4.pc.in \ + avahi-sharp.pc.in \ + avahi-ui-sharp.pc.in \ + avahi-compat-libdns_sd.pc.in \ + avahi-compat-howl.pc.in \ + avahi-ui.pc.in + +SUBDIRS = \ + common \ + avahi-common \ + avahi-glib \ + avahi-core \ + avahi-discover-standalone \ + avahi-qt \ + avahi-client \ + avahi-daemon \ + avahi-sharp \ + initscript \ + avahi-dnsconfd \ + avahi-utils \ + avahi-python \ + examples \ + man \ + tests \ + service-type-database \ + avahi-compat-libdns_sd \ + avahi-compat-howl \ + avahi-autoipd \ + avahi-ui \ + avahi-ui-sharp + +DX_INPUT = \ + $(srcdir)/avahi-common/address.h \ + $(srcdir)/avahi-common/strlst.h \ + $(srcdir)/avahi-common/alternative.h \ + $(srcdir)/avahi-common/defs.h \ + $(srcdir)/avahi-common/error.h \ + $(srcdir)/avahi-common/malloc.h \ + $(srcdir)/avahi-common/domain.h \ + $(srcdir)/avahi-common/watch.h \ + $(srcdir)/avahi-common/simple-watch.h \ + $(srcdir)/avahi-common/thread-watch.h \ + $(srcdir)/avahi-common/timeval.h + +DX_EXAMPLE_PATH = $(srcdir)/examples +DX_EXAMPLE_PATTERNS = *.c + +if HAVE_QT3 +DX_INPUT += \ + $(srcdir)/avahi-qt/qt-watch.h +else +if HAVE_QT4 +DX_INPUT += \ + $(srcdir)/avahi-qt/qt-watch.h +endif +endif + +if HAVE_GLIB +DX_INPUT += \ + $(srcdir)/avahi-glib/glib-watch.h \ + $(srcdir)/avahi-glib/glib-malloc.h +endif + +if HAVE_DBUS +DX_INPUT += \ + $(srcdir)/avahi-client/client.h \ + $(srcdir)/avahi-client/lookup.h \ + $(srcdir)/avahi-client/publish.h +endif + +if HAVE_DBUS +if HAVE_GTK +DX_INPUT += \ + $(srcdir)/avahi-ui/avahi-ui.h +endif +endif + +if ENABLE_CORE_DOCS +DX_INPUT += \ + $(srcdir)/avahi-core/core.h \ + $(srcdir)/avahi-core/lookup.h \ + $(srcdir)/avahi-core/publish.h \ + $(srcdir)/avahi-core/rr.h \ + $(srcdir)/avahi-core/log.h +endif + +if HAVE_GTK +DX_INPUT += \ + $(srcdir)/avahi-ui/avahi-ui.h +endif pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = avahi-core.pc -doxygen: - $(MAKE) -C doxygen doxygen +avahi-core.pc: avahi-core.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES = avahi-core.pc + +if HAVE_DBUS + +pkgconfig_DATA += avahi-client.pc + +avahi-client.pc: avahi-client.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES += avahi-client.pc + +if ENABLE_COMPAT_HOWL + +pkgconfig_DATA += avahi-compat-howl.pc + +avahi-compat-howl.pc: avahi-compat-howl.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@HOWL_COMPAT_VERSION\@,$(HOWL_COMPAT_VERSION),g' $< > $@ + +CLEANFILES += avahi-compat-howl.pc + +endif + +if ENABLE_COMPAT_LIBDNS_SD + +pkgconfig_DATA += avahi-compat-libdns_sd.pc + +avahi-compat-libdns_sd.pc: avahi-compat-libdns_sd.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES += avahi-compat-libdns_sd.pc + +endif + +if HAVE_MONO + +pkgconfig_DATA += avahi-sharp.pc avahi-ui-sharp.pc + +avahi-sharp.pc: avahi-sharp.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' \ + -e 's,@libdir\@,$(libdir),g' $< > $@ + +avahi-ui-sharp.pc: avahi-ui-sharp.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' \ + -e 's,@libdir\@,$(libdir),g' $< > $@ + +CLEANFILES += avahi-sharp.pc avahi-ui-sharp.pc + +endif + +endif + +if HAVE_GLIB + +pkgconfig_DATA += avahi-glib.pc + +avahi-glib.pc: avahi-glib.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES += avahi-glib.pc + +endif + +if HAVE_GTK +if HAVE_DBUS + +pkgconfig_DATA += avahi-ui.pc + +avahi-ui.pc: avahi-ui.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES += avahi-ui.pc + +endif +endif + +if HAVE_QT3 + +pkgconfig_DATA += avahi-qt3.pc + +avahi-qt3.pc: avahi-qt3.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES += avahi-qt3.pc + +endif + +if HAVE_QT4 + +pkgconfig_DATA += avahi-qt4.pc + +avahi-qt4.pc: avahi-qt4.pc.in + sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +CLEANFILES += avahi-qt4.pc + +endif + +MOSTLYCLEANFILES = $(DX_CLEANFILES) + +DISTCHECK_CONFIGURE_FLAGS = \ + --disable-monodoc -.PHONY: distcleancheck doxygen +homepage: + $(MAKE) -C man + scp avahi-daemon/*.introspect avahi-daemon/introspect.dtd avahi-daemon/introspect.xsl\ + man/*.xml man/xmltoman.dtd man/xmltoman.xsl \ + tango:www/avahi.org/tree/download/ + scp avahi-$(PACKAGE_VERSION).tar.gz tango:www/avahi.org/tree/download/ + rm -rf doxygen + $(MAKE) doxygen-run + ssh tango rm -rf www/avahi.org/tree/download/doxygen + scp -r doxygen/html tango:www/avahi.org/tree/download/doxygen