summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2017-02-28 11:16:40 +0100
committerStephane Delcroix <stephane@delcroix.org>2017-02-28 11:16:40 +0100
commitb716772dc31a39c9d8212583a43785ecf8425bf0 (patch)
tree1d2923ccc1e67f039895152815938972bb03579a /Makefile
parent62056766a49f08386f4516e06f64825ad0cb8e89 (diff)
downloadxamarin-forms-b716772dc31a39c9d8212583a43785ecf8425bf0.tar.gz
xamarin-forms-b716772dc31a39c9d8212583a43785ecf8425bf0.tar.bz2
xamarin-forms-b716772dc31a39c9d8212583a43785ecf8425bf0.zip
[docs] build Pages doc in make docs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 36088cb2..2a56f0de 100644
--- a/Makefile
+++ b/Makefile
@@ -13,9 +13,11 @@ XAML=Xamarin.Forms.Xaml
XAMLASSEMBLY=$(XAML)/bin/Release/$(XAML).dll
MAPS=Xamarin.Forms.Maps
MAPSASSEMBLY=$(MAPS)/bin/Release/$(MAPS).dll
+PAGES=Xamarin.Forms.Pages
+PAGESASSEMBLY=$(PAGES)/bin/Release/$(PAGES).dll
MDOC=mono tools/mdoc/mdoc.exe
-docs: $(CORE).docs $(MAPS).docs $(XAML).docs
+docs: $(CORE).docs $(MAPS).docs $(XAML).docs $(PAGES).docs
$(CORE).docs: $(COREASSEMBLY)
$(MDOC) update --delete -o docs/$(CORE) $(COREASSEMBLY) -L $(DOTNETPCL)
@@ -26,6 +28,9 @@ $(XAML).docs: $(XAMLASSEMBLY)
$(MAPS).docs: $(MAPSASSEMBLY)
$(MDOC) update --delete -o docs/$(MAPS) $(MAPSASSEMBLY) -L $(DOTNETPCL)
+$(PAGES).docs: $(PAGESASSEMBLY)
+ $(MDOC) update --delete -o docs/$(PAGES) $(PAGESASSEMBLY) -L $(DOTNETPCL)
+
$(COREASSEMBLY): .FORCE
xbuild /property:Configuration=Release Xamarin.Forms.Core/Xamarin.Forms.Core.csproj
@@ -35,6 +40,9 @@ $(XAMLASSEMBLY): .FORCE
$(MAPSASSEMBLY): .FORCE
xbuild /property:Configuration=Release Xamarin.Forms.Maps/Xamarin.Forms.Maps.csproj
+$(PAGESASSEMBLY): .FORCE
+ xbuild /property:Configuration=Release Xamarin.Forms.Pages/Xamarin.Forms.Pages.csproj
+
htmldocs: docs
$(MDOC) export-html -o htmldocs docs/*
@@ -43,6 +51,7 @@ xmldocs: docs
$(MDOC) export-msxdoc -o docs/$(CORE).xml docs/$(CORE)
$(MDOC) export-msxdoc -o docs/$(XAML).xml docs/$(XAML)
$(MDOC) export-msxdoc -o docs/$(MAPS).xml docs/$(MAPS)
+ $(MDOC) export-msxdoc -o docs/$(PAGES).xml docs/$(PAGES)
.FORCE:
-.PHONY: .FORCE $(CORE).docs $(MAPS).docs $(XAML).docs htmldocs xmldocs
+.PHONY: .FORCE $(CORE).docs $(MAPS).docs $(XAML).docs $(PAGES).docs htmldocs xmldocs