summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/rvwrite/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/rvwrite/Makefile
Initial commit
Diffstat (limited to 'macros/latex/contrib/rvwrite/Makefile')
-rw-r--r--macros/latex/contrib/rvwrite/Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/macros/latex/contrib/rvwrite/Makefile b/macros/latex/contrib/rvwrite/Makefile
new file mode 100644
index 0000000000..2b0c1b1aec
--- /dev/null
+++ b/macros/latex/contrib/rvwrite/Makefile
@@ -0,0 +1,45 @@
+##
+## Makefile
+##
+##
+##
+##
+##
+
+file=rvwrite-doc
+
+
+all: pdf out
+ make pdf
+
+out:
+ if [ -f $(file).out ] ; then cp $(file).out tmp.out; fi ;
+ sed 's/BOOKMARK/dtxmark/g;' tmp.out > x.out; mv x.out tmp.out ;
+
+pdf:
+ pdflatex $(file).tex
+
+index:
+ makeindex -s gind.ist -o $(file).ind $(file).idx
+
+changes:
+ makeindex -s gglo.ist -o $(file).gls $(file).glo
+
+view:
+ xpdf -z 200 $(file).pdf &>/dev/null
+
+aview:
+ acroread $(file).pdf
+
+macview:
+ open $(file).pdf
+
+ins:
+ latex $(file).ins
+
+diff:
+ diff $(file).sty ../$(file).sty |less
+
+copy:
+ cp $(file).sty ../
+