diff options
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile.example b/Makefile.example index 0ec951651..ece0024e7 100644 --- a/Makefile.example +++ b/Makefile.example @@ -58,11 +58,15 @@ compilemessages: ## compile translations cd $(CURDIR); \ $(PYTHON) $(project)/manage.py compilemessages; \ -build_doc_values: +##@ Documentation + +build_doc: build_doc_values build_doc_model_graph build_doc_changelog ## generate all documentation + +build_doc_values: ## generate technical annex 3 - values cd $(project);\ echo 'exec(open("../docs/generate_values_doc.py").read())' | $(PYTHON) ./manage.py shell -build_doc_model_graph: +build_doc_model_graph: ## generate graph models cd $(project);\ $(PYTHON) manage.py graph_models --pydot -g -I "ImporterModel,ImporterType,ImporterDefault,ImporterDefaultValues,ImporterColumn,Regexp,ImportTarget,FormaterType,Import" ishtar_common > /tmp/ishtar-imports.dot ;\ dot -Tsvg /tmp/ishtar-imports.dot -o ../docs/source/_static/db-imports.svg @@ -74,7 +78,7 @@ build_doc_model_graph: rm /tmp/ishtar-$$APP.dot ; \ done -build_doc_changelog: +build_doc_changelog: ## generate changelog - deprecated? mkdir -p docs/changelog/build/ cp -r docs/changelog/css docs/changelog/build/ cp -r docs/changelog/img docs/changelog/build/ @@ -110,8 +114,6 @@ build_doc_changelog: done ;\ done -build_doc: build_doc_values build_doc_model_graph build_doc_changelog ## generate documentation - ##@ Development: tests test: clean ## launch tests |