X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-sharp%2FMakefile.am;h=80fd06e9a8ab657b26c8e461b8b266cfa99a14e9;hb=6d952319b1a15b439150e7f5911b12e7fc204b69;hp=e91271522594bd860d09cbf8c7e7233a66806e4f;hpb=a72903f1b332e1910971ae06d3923eea7796a8e9;p=catta diff --git a/avahi-sharp/Makefile.am b/avahi-sharp/Makefile.am index e912715..80fd06e 100644 --- a/avahi-sharp/Makefile.am +++ b/avahi-sharp/Makefile.am @@ -1,37 +1,77 @@ +# $Id$ +# This file is part of avahi. +# +# avahi is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# avahi is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public +# License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with avahi; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA. ASSEMBLY = avahi-sharp.dll -CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb -EXTRA_DIST = $(AVAHISOURCES) avahi.snk avahi-sharp.pc.in +CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(ASSEMBLY).config AVAHISOURCES = \ - $(srcdir)/AssemblyInfo.cs \ $(srcdir)/AddressResolver.cs \ + $(srcdir)/AssemblyInfo.cs \ + $(srcdir)/BrowserBase.cs \ $(srcdir)/Client.cs \ $(srcdir)/ClientException.cs \ $(srcdir)/DomainBrowser.cs \ $(srcdir)/EntryGroup.cs \ $(srcdir)/HostNameResolver.cs \ + $(srcdir)/ResolverBase.cs \ $(srcdir)/ServiceBrowser.cs \ $(srcdir)/ServiceResolver.cs \ $(srcdir)/ServiceTypeBrowser.cs \ $(srcdir)/Utility.cs +EXTRA_DIST = \ + $(AVAHISOURCES) \ + $(srcdir)/AvahiTest.cs \ + $(srcdir)/avahi.snk \ + $(srcdir)/$(ASSEMBLY).config.in \ + $(srcdir)/avahi-sharp-docs.source \ + $(srcdir)/en/*.xml \ + $(srcdir)/en/*/*.xml \ + $(srcdir)/gencfg.sh + $(ASSEMBLY): $(AVAHISOURCES) mcs -keyfile:$(srcdir)/avahi.snk -target:library -out:$@ -debug $(AVAHISOURCES) -r:Mono.Posix + +$(ASSEMBLY).config: $(ASSEMBLY).config.in + $(srcdir)/gencfg.sh $(top_builddir)/avahi-client/libavahi-client.la \ + $(top_builddir)/avahi-common/libavahi-common.la < $< > $@ + if HAVE_MONO -all: $(ASSEMBLY) +all: $(ASSEMBLY) $(ASSEMBLY).config -pkgcfgdir = $(libdir)/pkgconfig -pkgcfg_DATA = avahi-sharp.pc +if HAVE_MONODOC +update-docs: $(ASSEMBLY) + $(MONODOCER) -assembly:$(ASSEMBLY) -path:en -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-sharp-docs.zip: $(srcdir)/en/*/* + $(MDASSEMBLER) --out avahi-sharp-docs --ecma $(srcdir)/en -install-data-hook: +docdir = $(MONODOC_DIR) +doc_DATA = avahi-sharp-docs.zip avahi-sharp-docs.tree avahi-sharp-docs.source + +endif + +install-data-hook: $(ASSEMBLY) $(GACUTIL) /i $(ASSEMBLY) /package avahi-sharp /gacdir $(libdir) /root $(DESTDIR)$(libdir) + +uninstall-hook: $(ASSEMBLY) + $(GACUTIL) /u avahi-sharp /package avahi-sharp /gacdir $(libdir) /root $(DESTDIR)$(libdir) endif