doc: Add basic Sphinx configuration and Makefile
Adding the same type of Sphinx config that is used for the main
TF-A repo. Contains the config itself, a Makefile to build the
docs directly under the /docs directory (not tied to top-level
Makefile by design), an index page and the TF.org logo as used
in TF-A.
Change-Id: Ifd5c83533fbad457b448a52f42a2f12303887f4a
Signed-off-by: Paul Beesley <paul.beesley@arm.com>
diff --git a/docs/Makefile b/docs/Makefile
new file mode 100644
index 0000000..a7083fb
--- /dev/null
+++ b/docs/Makefile
@@ -0,0 +1,25 @@
+#
+# Copyright (c) 2019, ARM Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+# Minimal makefile for Sphinx documentation
+#
+
+# You can set these variables from the command line.
+SPHINXOPTS =
+SPHINXBUILD = sphinx-build
+SPHINXPROJ = TrustedFirmware-A Tests
+SOURCEDIR = .
+BUILDDIR = build
+
+# Put it first so that "make" without argument is like "make help".
+help:
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+.PHONY: help Makefile
+
+# Catch-all target: route all unknown targets to Sphinx using the new
+# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
+%: Makefile
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)