Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-10-16 15:09:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-16 15:09:15 +0400
commit92bc72dca19ae50a8e1a36734a7280e10f8e352e (patch)
tree13dfa4fdaead8c1ea679d9e3ccb226360dd7ad79 /GNUmakefile
parent3fd8a914b84ff6e1e0c9e313d0a48cd3438e0b08 (diff)
convenience targets for make doc_py, doc_dna, doc_man
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 52f36b218d8..17a9e87be22 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -147,6 +147,8 @@ help:
@echo ""
@echo "Documentation Targets"
@echo " * doc_py - generate sphinx python api docs"
+ @echo " * doc_dna - generate blender file format reference"
+ @echo " * doc_man - generate manpage"
@echo ""
# -----------------------------------------------------------------------------
@@ -235,6 +237,13 @@ doc_py:
cd doc/python_api ; sphinx-build -n -b html sphinx-in sphinx-out
@echo "docs written into: '$(BLENDER_DIR)/doc/python_api/sphinx-out/contents.html'"
+doc_dna:
+ $(BUILD_DIR)/bin/blender --background --factory-startup --python doc/blender_file_format/BlendFileDnaExporter_25.py
+ @echo "docs written into: '$(BLENDER_DIR)/doc/blender_file_format/dna.html'"
+
+doc_man:
+ python3 doc/manpage/blender.1.py $(BUILD_DIR)/bin/blender
+
clean:
$(MAKE) -C $(BUILD_DIR) clean