summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/graphviz/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-08-25 21:57:19 +0000
committerKarl Berry <karl@freefriends.org>2013-08-25 21:57:19 +0000
commit6e1716959dcbead4226252da5ee6590ef79c67dc (patch)
treed2d9e44359663c10677d03adcdb477a5a0ef39ad /Master/texmf-dist/doc/latex/graphviz/Makefile
parentcff40ff1ca6a982d827c23c02df7ae79504d12a3 (diff)
graphviz (25aug13)
git-svn-id: svn://tug.org/texlive/trunk@31517 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/graphviz/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/graphviz/Makefile44
1 files changed, 44 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/graphviz/Makefile b/Master/texmf-dist/doc/latex/graphviz/Makefile
new file mode 100644
index 00000000000..07476fa0da8
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/graphviz/Makefile
@@ -0,0 +1,44 @@
+P = graphviz
+
+all: $(P).sty $(P).pdf $(P).ps
+
+dist: all clean
+ zip -r $(P).zip *
+
+$(P).sty: $(P).dtx
+ latex $(P).ins
+
+$(P).ps: $(P).dvi
+ dvips $(P).dvi
+
+$(P).pdf: $(P).ps
+ ps2pdf $(P).ps
+
+dvi: $(P).dvi
+
+$(P).dvi: $(P).dtx $(P).sty
+ latex -shell-escape $(P).dtx
+ makeindex -s gglo.ist -o $(P).gls $(P).glo
+ latex -shell-escape $(P).dtx
+
+#dotps: $(P).dvi
+# dot -Tps -o MyGraph.ps MyGraph.dot
+# dot -Tps -o MyGraph2.ps MyGraph2.dot
+
+clean:
+ rm -f *~
+ rm -f *.dot
+ rm -f *.ps
+ rm -f *.psbackup
+ rm -f $(P).aux
+ rm -f $(P).glo
+ rm -f $(P).gls
+ rm -f $(P).idx
+ rm -f $(P).ilg
+ rm -f $(P).log
+ rm -f $(P).dvi
+ rm -f $(P).zip
+
+clobber: clean
+ rm -f $(P).pdf
+ rm -f $(P).sty