summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2024-06-13 16:54:19 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2024-06-19 14:42:32 +0200
commitbaa8b37fe683828cb2471f1616d5d8ad36e91920 (patch)
tree589787cfbb8428740b0be2afa1e73b99daa77a31 /Makefile.example
parentb81a8233c9d905fd8cee50a68e4750d639f15308 (diff)
downloadIshtar-baa8b37fe683828cb2471f1616d5d8ad36e91920.tar.bz2
Ishtar-baa8b37fe683828cb2471f1616d5d8ad36e91920.zip
🐛 documentation - add missing fields, sections in technical values, fix translations
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example12
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