]> git.meshlink.io Git - catta/blob - avahi-ui-sharp/Makefile.am
add avahi-ui-sharp
[catta] / avahi-ui-sharp / Makefile.am
1 # $Id: Makefile.am 1251 2006-08-21 23:31:59Z lennart $
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 ASSEMBLY = avahi-ui-sharp.dll
21
22 CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(ASSEMBLY).config
23
24 AVAHISOURCES =                          \
25         $(srcdir)/ServiceDialog.cs
26
27 EXTRA_DIST =                                    \
28         $(AVAHISOURCES)                         \
29         $(srcdir)/avahi-ui-sharp-docs.source    \
30         $(srcdir)/en/*.xml                      \
31         $(srcdir)/en/*/*.xml                    \
32         $(srcdir)/gencfg.sh
33
34 $(ASSEMBLY): $(AVAHISOURCES)
35         mcs -keyfile:$(top_srcdir)/avahi-sharp/avahi.snk -target:library -out:$@ -debug $(AVAHISOURCES) -pkg:gtk-sharp-2.0 -r:$(top_builddir)/avahi-sharp/avahi-sharp.dll -r:Mono.Posix
36
37 $(ASSEMBLY).config: $(ASSEMBLY).config.in
38         $(srcdir)/gencfg.sh $(top_builddir)/avahi-common/libavahi-common.la < $< > $@
39
40 if HAVE_MONO
41 if HAVE_DBUS
42 all: $(ASSEMBLY) $(ASSEMBLY).config
43
44 if HAVE_MONODOC
45 update-docs: $(ASSEMBLY)
46         $(MONODOCER) -assembly:$(ASSEMBLY) -path:en
47
48 avahi-ui-sharp-docs.zip: avahi-ui-sharp-docs.tree
49
50 avahi-ui-sharp-docs.tree: $(srcdir)/en/*/*
51         $(MDASSEMBLER) --out avahi-ui-sharp-docs --ecma $(srcdir)/en
52
53 monodocdir = $(MONODOC_DIR)
54 monodoc_DATA = avahi-ui-sharp-docs.zip avahi-ui-sharp-docs.tree avahi-ui-sharp-docs.source
55
56 endif
57
58 install-data-hook: $(ASSEMBLY)
59         $(GACUTIL) /i $(ASSEMBLY) /package avahi-ui-sharp /gacdir $(libdir) /root $(DESTDIR)$(libdir)
60
61 uninstall-hook: $(ASSEMBLY)
62         $(GACUTIL) /u avahi-sharp /package avahi-ui-sharp /gacdir $(libdir) /root $(DESTDIR)$(libdir)
63
64 endif
65 endif