| all : ../eclipse.html ../eclipse.pdf \ |
| ../polarsys.html ../polarsys.pdf \ |
| ../locationtech.html ../locationtech.pdf \ |
| images |
| .PHONY : all |
| |
| # IMAGES |
| |
| images : \ |
| ../images/project-creation.png \ |
| ../images/post-creation.png \ |
| ../images/release-cycle.png \ |
| ../images/release-review.png \ |
| ../images/paperwork.png \ |
| ../images/cq-workflow.png \ |
| ../images/project-lifecycle.png \ |
| ../images/ip-log-generator.png |
| .PHONY : all |
| |
| ../images/project-creation.png : images/project-creation.dot |
| dot -Tpng images/project-creation.dot > ../images/project-creation.png |
| |
| ../images/post-creation.png : images/post-creation.dot |
| dot -Tpng images/post-creation.dot > ../images/post-creation.png |
| |
| ../images/release-cycle.png : images/release-cycle.dot |
| dot -Tpng images/release-cycle.dot > ../images/release-cycle.png |
| |
| ../images/release-review.png : images/release-review.dot |
| dot -Tpng images/release-review.dot > ../images/release-review.png |
| |
| ../images/paperwork.png : images/paperwork.dot |
| dot -Tpng images/paperwork.dot > ../images/paperwork.png |
| |
| ../images/cq-workflow.png : images/cq-workflow.dot |
| dot -Tpng images/cq-workflow.dot > ../images/cq-workflow.png |
| |
| ../images/project-lifecycle.png : images/project-lifecycle.dot |
| dot -Tpng images/project-lifecycle.dot > ../images/project-lifecycle.png |
| |
| ../images/ip-log-generator.png : images/ip-log-generator.dot |
| dot -Tpng images/ip-log-generator.dot > ../images/ip-log-generator.png |
| |
| # ECLIPSE |
| |
| ../eclipse.book.xml : eclipse.adoc config.adoc chapters/* images |
| asciidoctor -b docbook -d book -o ../eclipse.book.xml eclipse.adoc |
| |
| ../eclipse.html : eclipse.adoc config.adoc chapters/* images |
| asciidoctor -a stylesheet=handbook.css -b html5 -d book -o ../eclipse.html eclipse.adoc |
| |
| #../eclipse.html : ../eclipse.book.xml |
| # xsltproc -o ../eclipse.html /usr/share/sgml/docbook/xsl-ns-stylesheets/xhtml-1_1/docbook.xsl ../eclipse.book.xml |
| |
| ../eclipse.pdf : ../eclipse.book.xml |
| xsltproc -xinclude -o ../eclipse.fo \ |
| --param toc.section.depth 1 \ |
| --param ulink.footnotes 1 \ |
| --param admon.graphics 1 \ |
| --xinclude \ |
| /usr/share/sgml/docbook/xsl-ns-stylesheets/fo/docbook.xsl ../eclipse.book.xml |
| fop -v ../eclipse.fo -pdf ../eclipse.pdf |
| rm ../eclipse.fo |
| |
| |
| # POLARSYS |
| |
| ../polarsys.book.xml : polarsys.adoc config.adoc chapters/* images |
| asciidoctor -b docbook -d book -o ../polarsys.book.xml polarsys.adoc |
| |
| ../polarsys.html : polarsys.adoc config.adoc chapters/* images |
| asciidoctor -a stylesheet=github.css -b html5 -d book -o ../polarsys.html polarsys.adoc |
| |
| ../polarsys.pdf : ../polarsys.book.xml |
| xsltproc -xinclude -o ../polarsys.fo \ |
| --param toc.section.depth 1 \ |
| --param ulink.footnotes 1 \ |
| --param admon.graphics 1 \ |
| /usr/share/sgml/docbook/xsl-ns-stylesheets/fo/docbook.xsl ../polarsys.book.xml |
| fop -v ../polarsys.fo -pdf ../polarsys.pdf |
| rm ../polarsys.fo |
| |
| # LOCATIONTECH |
| |
| ../locationtech.book.xml : locationtech.adoc config.adoc chapters/* images |
| asciidoctor -b docbook -d book -o ../locationtech.book.xml locationtech.adoc |
| |
| ../locationtech.html : locationtech.adoc config.adoc chapters/* images |
| asciidoctor -a stylesheet=github.css -b html5 -d book -o ../locationtech.html locationtech.adoc |
| |
| ../locationtech.pdf : ../locationtech.book.xml |
| xsltproc -xinclude -o ../locationtech.fo \ |
| --param toc.section.depth 1 \ |
| --param ulink.footnotes 1 \ |
| --param admon.graphics 1 \ |
| /usr/share/sgml/docbook/xsl-ns-stylesheets/fo/docbook.xsl ../locationtech.book.xml |
| fop -v ../locationtech.fo -pdf ../locationtech.pdf |
| rm ../locationtech.fo |