importing messaging-2008 branch to trunk, going on.
[mono.git] / docs / docs.make
1 thisdir = docs
2 SUBDIRS = 
3 include $(topdir)/build/rules.make
4
5 ASSEMBLED_DOCS = \
6         mono-file-formats.tree mono-file-formats.zip  \
7         mono-tools.tree mono-tools.zip                \
8         monoapi.tree monoapi.zip
9
10 convert.exe: convert.cs AgilityPack.dll
11         $(CSCOMPILE) -out:$@ $< -r:AgilityPack.dll
12
13 monoapi.zip: monoapi.tree
14         @test -f $@ || { rm -f $< && $(MAKE) $<; }
15 monoapi.tree: toc.xml docs.make
16         $(MDOC) assemble -o monoapi -f hb $<
17
18 mono-tools.zip: mono-tools.tree
19         @test -f $@ || { rm -f $< && $(MAKE) $<; }
20 mono-tools.tree: mono-tools.config docs.make
21         $(MDOC) assemble -o mono-tools -f man $<
22
23 mono-file-formats.zip: mono-file-formats.tree
24         @test -f $@ || { rm -f $< && $(MAKE) $<; }
25 mono-file-formats.tree: mono-file-formats.config docs.make
26         $(MDOC) assemble -o mono-file-formats -f man $<
27
28 .doc-stamp:
29