summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-04-29 21:49:08 +0000
committerKarl Berry <karl@freefriends.org>2018-04-29 21:49:08 +0000
commit398ae888a882af3b901d7e6564634e4611988fe3 (patch)
treebd2c0b49677d62ddc64848b84f8747d8b1c6ffa6 /Master/texmf-dist/source
parentd66a575324f780018fe771d8f391d1cb011bdc9c (diff)
libertinus-otf (29apr18)
git-svn-id: svn://tug.org/texlive/trunk@47485 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r--Master/texmf-dist/source/latex/libertinus-otf/Makefile.doc58
1 files changed, 58 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/libertinus-otf/Makefile.doc b/Master/texmf-dist/source/latex/libertinus-otf/Makefile.doc
new file mode 100644
index 00000000000..b67009eacc7
--- /dev/null
+++ b/Master/texmf-dist/source/latex/libertinus-otf/Makefile.doc
@@ -0,0 +1,58 @@
+# $Id: Makefile 443 2017-04-19 10:28:05Z herbert $
+
+# `Makefile' for `lucida-otf-doc.pdf', hv, 2017/04/15
+
+.SUFFIXES : .tex .ltx .pdf
+
+PACKAGE = libertinus-otf
+
+MAIN = $(PACKAGE)-doc
+
+LATEX = lualatex
+
+ARCHNAME = $(MAIN)-$(shell date +%y%m%d)
+
+ARCHFILES = $(PACKAGE).sty $(MAIN).tex README Changes Makefile
+
+#TDS = ~/PSTricks/PSTricks-TDS
+
+all : doc clean
+doc: $(MAIN).pdf
+
+$(MAIN).pdf : $(MAIN).ps
+# GS_OPTIONS=-dAutoRotatePages=/None ps2pdf $<
+
+$(MAIN).ps : $(MAIN).dvi
+# dvips $<
+
+$(MAIN).dvi : $(MAIN).tex
+ $(LATEX) $<
+ pdffonts $(basename $<).pdf > $(basename $<).txt
+ if ! test -f $(basename $<).glo ; then touch $(basename $<).glo; fi
+ if ! test -f $(basename $<).idx ; then touch $(basename $<).idx; fi
+ makeindex -s gglo.ist -t $(basename $<).glg -o $(basename $<).gls \
+ $(basename $<).glo
+ makeindex -t $(basename $<).ilg -o $(basename $<).ind \
+ $(basename $<).idx
+# biber $(basename $<)
+# $(LATEX) $<
+ $(LATEX) $<
+
+clean :
+ $(RM) $(addprefix $(MAIN), .log .aux .glg .glo .gls .ilg .idx .ind .tmp .toc .out .blg .Roessler .bbl )
+ $(RM) $(addprefix $(MAIN), .dvi .ps .bcf .run.xml .txt)
+
+veryclean : clean
+ $(RM) $(addprefix $(MAIN), .pdf .bbl .blg)
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+ctan:
+ cp -u *.sty .ctan/$(PACKAGE)/latex/
+ cp -u $(PACKAGE)-doc.* .ctan/$(PACKAGE)/doc/
+ cp -u Changes .ctan/$(PACKAGE)/
+ cp -u README .ctan/$(PACKAGE)/
+ chmod -R a+r .ctan/$(PACKAGE)
+
+# EOF