diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-17 21:29:07 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-17 21:29:07 +0100 |
commit | fdcc60ea575ad25994f12a8d31b8a323f22538d4 (patch) | |
tree | 204e0afa8e852b0fc494bfe90b4d947498860dc6 /Makefile.example | |
parent | dd642af1a1e8ad43b6c072a9ec73e4275aa29eab (diff) | |
parent | fb67f2224a60d19380c6db682499af76a9667d35 (diff) | |
download | Ishtar-fdcc60ea575ad25994f12a8d31b8a323f22538d4.tar.bz2 Ishtar-fdcc60ea575ad25994f12a8d31b8a323f22538d4.zip |
Merge branch 'v0.9' into wheezy
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.example b/Makefile.example index 89cae31a1..e7e604706 100644 --- a/Makefile.example +++ b/Makefile.example @@ -145,14 +145,15 @@ schemamigrations_initial: generate_doc: cd $(project);\ - $(PYTHON) manage.py graph_models --pydot -I "ImporterType,ImporterDefault,ImporterDefaultValues,ImporterColumn,Regexp,ImportTarget,FormaterType,Import" ishtar_common > /tmp/ishtar.dot ;\ - dot -Tpng /tmp/ishtar.dot -o ../docs/source/_static/db-imports.png + $(PYTHON) manage.py graph_models --pydot -g -I "ImporterModel,ImporterType,ImporterDefault,ImporterDefaultValues,ImporterColumn,Regexp,ImportTarget,FormaterType,Import" ishtar_common > /tmp/ishtar-imports.dot ;\ + dot -Tpng /tmp/ishtar-imports.dot -o ../docs/source/_static/db-imports.png + rm /tmp/ishtar-imports.dot cd $(project);\ for APP in $(apps); do \ - $(PYTHON) manage.py graph_models --pydot $$APP > /tmp/ishtar.dot; \ - dot -Tpng /tmp/ishtar.dot -o ../docs/source/_static/db-$$APP.png; \ + $(PYTHON) manage.py graph_models -g --pydot $$APP > /tmp/ishtar-$$APP.dot; \ + dot -Tpng /tmp/ishtar-$$APP.dot -o ../docs/source/_static/db-$$APP.png; \ + rm /tmp/ishtar-$$APP.dot ; \ done - rm /tmp/ishtar.dot fixtures: fixtures_auth fixtures_common fixtures_operations fixtures_context_records fixtures_finds fixtures_warehouse fixtures_files |