blob: 43ab428574629f2cb5dac5a7f48830790e1ee3c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# $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 $(ASSEMBLY).config
AVAHISOURCES = \
$(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)/RecordBrowser.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 \
$(top_builddir)/avahi-glib/libavahi-glib.la < $< > $@
if HAVE_MONO
if HAVE_DBUS
all: $(ASSEMBLY) $(ASSEMBLY).config
if HAVE_MONODOC
update-docs: $(ASSEMBLY)
$(MONODOCER) -assembly:$(ASSEMBLY) -path:en
avahi-sharp-docs.zip: avahi-sharp-docs.tree
avahi-sharp-docs.tree: $(srcdir)/en/*/*
$(MDASSEMBLER) --out avahi-sharp-docs --ecma $(srcdir)/en
monodocdir = $(MONODOC_DIR)
monodoc_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
endif
|