File: Makefile.am

package info (click to toggle)
muine 0.8.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,436 kB
  • ctags: 3,081
  • sloc: cs: 12,764; sh: 8,895; ansic: 5,290; xml: 1,408; makefile: 493
file content (34 lines) | stat: -rw-r--r-- 912 bytes parent folder | download | duplicates (2)
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
if ENABLE_MONODOC
ASSEMBLIES = \
	$(top_builddir)/PluginLib/muine-plugin.dll \
	$(top_builddir)/DBusLib/muine-dbus.dll

ASSEMBLIES_BUILD = $(foreach asm,$(ASSEMBLIES),$(addprefix -assembly:,$(asm)))

docdir = $(libdir)/monodoc/sources
doc_DATA = \
	muine-docs.zip \
	muine-docs.tree \
	muine-docs.source
else
endif

muine-docs.zip: muine-docs.tree

muine-docs.tree: $(srcdir)/en/*/*.xml $(srcdir)/en/*.xml
	$(MDASSEMBLER) --ecma $(srcdir)/en -o muine-docs

update: $(ASSEMBLIES)
	$(MONODOCER) $(ASSEMBLIES_BUILD) -path:en -updateto:en -delete

DISTCLEANFILES = muine-docs.zip muine-docs.tree

EXTRA_DIST = muine-docs.source

dist-hook:
	mkdir -p $(distdir)/en
	cp $(srcdir)/en/*.xml $(distdir)/en/
	mkdir -p $(distdir)/en/Muine.DBusLib
	cp $(srcdir)/en/Muine.DBusLib/*.xml $(distdir)/en/Muine.DBusLib/
	mkdir -p $(distdir)/en/Muine.PluginLib
	cp $(srcdir)/en/Muine.PluginLib/*.xml $(distdir)/en/Muine.PluginLib/