X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=Makefile.am;h=f6be64d0563531710417d3a43d37271154103ad8;hb=3b898d826ec5e97f287481ea1612483e6f3cc066;hp=a8b50d1a9e773fb0e356117ec8721d89b09e35cd;hpb=3bf52c1e00fd8cf4850329adb4f76c3c2649df79;p=catta diff --git a/Makefile.am b/Makefile.am index a8b50d1..f6be64d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,3 @@ -# $Id$ - # This file is part of avahi. # # avahi is free software; you can redistribute it and/or modify it @@ -21,12 +19,62 @@ ACLOCAL_AMFLAGS = -I common include $(srcdir)/common/doxygen.mk -EXTRA_DIST = bootstrap.sh LICENSE $(DX_CONFIG) -SUBDIRS = common avahi-common avahi-core avahi-discover-standalone avahi-client avahi-daemon initscript avahi-dnsconfd avahi-utils examples +EXTRA_DIST = \ + 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.pc.in \ + doxygen_to_devhelp.xsl + +SUBDIRS = \ + common \ + avahi \ + examples + +DX_INPUT = \ + $(srcdir)/avahi/address.h \ + $(srcdir)/avahi/malloc.h \ + $(srcdir)/avahi/strlst.h \ + $(srcdir)/avahi/alternative.h \ + $(srcdir)/avahi/defs.h \ + $(srcdir)/avahi/error.h \ + $(srcdir)/avahi/domain.h \ + $(srcdir)/avahi/watch.h \ + $(srcdir)/avahi/simple-watch.h \ + $(srcdir)/avahi/thread-watch.h \ + $(srcdir)/avahi/core.h \ + $(srcdir)/avahi/lookup.h \ + $(srcdir)/avahi/publish.h \ + $(srcdir)/avahi/rr.h \ + $(srcdir)/avahi/log.h + +DX_EXAMPLE_PATH = $(srcdir)/examples +DX_EXAMPLE_PATTERNS = *.c pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = avahi-core.pc -MOSTLYCLEANFILES = $(DX_CLEANFILES) +%.pc: %.pc.in + $(AM_V_GEN)sed -e 's,@prefix\@,$(prefix),g' \ + -e 's,@libdir\@,$(libdir),g' \ + -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ + +pkgconfig_DATA = avahi.pc +CLEANFILES = avahi.pc +CLEANFILES += avahi.devhelp -#.PHONY: distcleancheck +avahi.devhelp: doxygen-run + xsltproc -o $@ doxygen_to_devhelp.xsl doxygen/xml/index.xml + +MOSTLYCLEANFILES = $(DX_CLEANFILES)