Update CODEOWNERS
[mono-project.git] / docs / docs.make
blob13d82f16ed9576729b144d2700f38b10b152638c
2 # This makefile is here because it uses the configuration from the
3 # in-place built mono to run and compile a few C# tools
6 thisdir = docs
7 SUBDIRS =
8 include $(topdir)/build/rules.make
10 ASSEMBLED_DOCS = \
11 mono-file-formats.tree mono-file-formats.zip \
12 mono-tools.tree mono-tools.zip \
13 monoapi.tree monoapi.zip
15 convert.exe: $(srcdir)/convert.cs AgilityPack.dll
16 $(CSCOMPILE) -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll -r:$(topdir)/class/lib/$(PROFILE)/System.Xml.dll -out:$@ $< -r:AgilityPack.dll
18 AgilityPack.dll:
19 $(CSCOMPILE) -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll -r:$(topdir)/class/lib/$(PROFILE)/System.dll -r:$(topdir)/class/lib/$(PROFILE)/System.Xml.dll -target:library -out:$@ $(srcdir)/HtmlAgilityPack/*.cs
21 ifdef MCS_MODE
22 monoapi.zip:
23 touch $@
25 monoapi.tree: monoapi.zip
26 touch $@
28 mono-tools.zip:
29 touch $@
31 mono-tools.tree: mono-tools.zip
32 touch $@
34 mono-file-formats.zip:
35 touch $@
37 mono-file-formats.tree: mono-file-formats.zip
38 touch $@
40 else
42 monoapi.zip: monoapi.tree
43 @test -f $@ || { rm -f $< && $(MAKE) $<; }
45 monoapi.tree: $(srcdir)/toc.xml $(srcdir)/docs.make
46 $(MDOC) assemble -o monoapi -f hb $<
48 mono-tools.zip: mono-tools.tree
49 @test -f $@ || { rm -f $< && $(MAKE) $<; }
51 mono-tools.tree: $(srcdir)/mono-tools.config $(srcdir)/docs.make
52 $(MDOC) assemble -o mono-tools -f man $<
54 mono-file-formats.zip: mono-file-formats.tree
55 @test -f $@ || { rm -f $< && $(MAKE) $<; }
57 mono-file-formats.tree: $(srcdir)/mono-file-formats.config $(srcdir)/docs.make
58 $(MDOC) assemble -o mono-file-formats -f man $<
60 endif
62 .doc-stamp: