summaryrefslogtreecommitdiff
path: root/graphics/pstricks/contrib/pst-circ/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-04-29 03:01:11 +0000
committerNorbert Preining <norbert@preining.info>2021-04-29 03:01:11 +0000
commiteb12ba26e2796aad14025f9c36434d5b84097eab (patch)
tree31d038b8c37ccc96d1d6b0c33ec5dcb77384fc10 /graphics/pstricks/contrib/pst-circ/Makefile
parentd929e40413ebfcbeaadd7e5469ed1eb0d867ba97 (diff)
CTAN sync 202104290301
Diffstat (limited to 'graphics/pstricks/contrib/pst-circ/Makefile')
-rw-r--r--graphics/pstricks/contrib/pst-circ/Makefile61
1 files changed, 61 insertions, 0 deletions
diff --git a/graphics/pstricks/contrib/pst-circ/Makefile b/graphics/pstricks/contrib/pst-circ/Makefile
new file mode 100644
index 0000000000..90b96655a6
--- /dev/null
+++ b/graphics/pstricks/contrib/pst-circ/Makefile
@@ -0,0 +1,61 @@
+# `Makefile' for `pst-circ.pdf', hv, 2007/03/17
+
+.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps
+
+PACKAGE = pst-circ
+
+MAIN = $(PACKAGE)-doc
+
+LATEX = latex
+
+ARCHNAME = $(MAIN)-$(shell date +%y%m%d)
+
+ARCHFILES = $(PACKAGE).sty $(PACKAGE).tex $(PACKAGE).pro $(MAIN).tex README Changes Makefile
+
+TDS = ~/PSTricks/PSTricks-TDS
+
+all : doc clean ctan tds
+doc: $(MAIN).pdf
+
+$(MAIN).pdf : $(MAIN).ps
+ GS_OPTIONS=-dAutoRotatePages=/None ps2pdf $<
+
+$(MAIN).ps : $(MAIN).dvi
+ dvips $<
+
+$(MAIN).dvi : $(MAIN).tex
+ $(LATEX) $<
+ $(LATEX) $<
+ 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)
+
+veryclean : clean
+ $(RM) $(addprefix $(MAIN), .pdf .bbl .blg)
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+ctan:
+ cp *.sty .ctan/$(PACKAGE)/latex/
+ cp $(PACKAGE).tex .ctan/$(PACKAGE)/tex/
+# cp $(PACKAGE)97.tex .ctan/$(PACKAGE)/tex/
+ cp *.pro .ctan/$(PACKAGE)/dvips/
+# cp more_docs/* .ctan/$(PACKAGE)/doc/
+ cp $(PACKAGE)-doc.* .ctan/$(PACKAGE)/doc/
+# rm -fr .ctan/$(PACKAGE)/.svn
+#
+ cp Changes .ctan/$(PACKAGE)/
+ cp README .ctan/$(PACKAGE)/
+ chmod -R a+r .ctan/$(PACKAGE)
+