[xbuild] Don't report Imports ignored because of false conditions.
[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 AgilityPack.dll:
14         $(CSCOMPILE) -target:library -out:$@ HtmlAgilityPack/*.cs
15
16 monoapi.zip: monoapi.tree
17         @test -f $@ || { rm -f $< && $(MAKE) $<; }
18 monoapi.tree: toc.xml docs.make
19         $(MDOC) assemble -o monoapi -f hb $<
20
21 mono-tools.zip: mono-tools.tree
22         @test -f $@ || { rm -f $< && $(MAKE) $<; }
23 mono-tools.tree: mono-tools.config docs.make
24         $(MDOC) assemble -o mono-tools -f man $<
25
26 mono-file-formats.zip: mono-file-formats.tree
27         @test -f $@ || { rm -f $< && $(MAKE) $<; }
28 mono-file-formats.tree: mono-file-formats.config docs.make
29         $(MDOC) assemble -o mono-file-formats -f man $<
30
31 .doc-stamp:
32