aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2024-01-20 08:08:14 +0000
committerChristopher Baines <mail@cbaines.net>2024-01-20 10:49:37 +0000
commitee1ceaee8eab9c1ac3a98039fa159fdd960e8443 (patch)
tree712f09c4f479e3caad746b08eec94395eafdf024 /Makefile.am
parentd7b2634efa8f953b926eb251cfc26b0225514d87 (diff)
downloadqa-frontpage-ee1ceaee8eab9c1ac3a98039fa159fdd960e8443.tar
qa-frontpage-ee1ceaee8eab9c1ac3a98039fa159fdd960e8443.tar.gz
Add an information flow diagram
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 81b68fc..5976691 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -57,9 +57,13 @@ README.html: README.org
emacs -q --no-splash -batch -visit README.org \
-eval "(progn (require 'org) (let ((org-export-htmlize-output-type 'css)) (org-html-export-to-html nil nil nil t nil)))"
-install-data-local: README.html
+qa-information-flow.png: qa-information-flow.plantuml
+ plantuml -v qa-information-flow.plantuml
+
+install-data-local: README.html qa-information-flow.png
mkdir -p "$(DESTDIR)$(pkgdatadir)" || exit 1;
cp -r assets "$(DESTDIR)$(pkgdatadir)/" || exit 1;
mkdir -p "$(DESTDIR)$(docdir)";
cp README.org "$(DESTDIR)$(docdir)/README.org"
cp README.html "$(DESTDIR)$(docdir)/README.html"
+ cp qa-information-flow.plantuml qa-information-flow.png "$(DESTDIR)$(docdir)"