summaryrefslogtreecommitdiff
path: root/indexing/xindex/doc/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 /indexing/xindex/doc/Makefile
Initial commit
Diffstat (limited to 'indexing/xindex/doc/Makefile')
-rw-r--r--indexing/xindex/doc/Makefile52
1 files changed, 52 insertions, 0 deletions
diff --git a/indexing/xindex/doc/Makefile b/indexing/xindex/doc/Makefile
new file mode 100644
index 0000000000..a4fb2b95df
--- /dev/null
+++ b/indexing/xindex/doc/Makefile
@@ -0,0 +1,52 @@
+# `Makefile' for `pst-grad.pdf', hv, 2008/08/11
+
+.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps
+
+PACKAGE = xhfill
+
+MAIN = xindex-doc
+
+LATEX = lualatex
+
+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
+# clean
+doc:
+ $(LATEX) --shell-escape $(MAIN)
+# if ! test -f $(MAIN).glo ; then touch $(MAIN).glo; fi
+ if ! test -f $(MAIN).idx ; then touch $(MAIN).idx; fi
+# makeindex -s gglo.ist -t $(MAIN).glg -o $(MAIN).gls $(MAIN).glo
+ xindex -a $(MAIN).idx
+# bibtex $(MAIN)
+ $(LATEX) --shell-escape $(MAIN)
+# $(LATEX) --shell-escape $(MAIN)
+
+clean :
+ $(RM) *.dvi *.aux *.log *.xml xindex-?.tex xindex-??.tex *.ind *.idx *.toc *.out *.ilg
+
+veryclean : clean
+ $(RM) *.pdf
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+tds:
+ cp -u Changes $(TDS)/doc/latex/$(PACKAGE)/
+ cp -u README $(TDS)/doc/latex/$(PACKAGE)/
+ cp -u $(MAIN).pdf $(TDS)/doc/latex/$(PACKAGE)/
+#
+ cp -u Changes $(TDS)/tex/latex/$(PACKAGE)/
+ cp -u $(PACKAGE).sty $(TDS)/tex/latex/$(PACKAGE)/
+#
+ cp -u Changes $(TDS)/source/$(PACKAGE)/
+ cp -u $(MAIN).tex $(TDS)/source/$(PACKAGE)/
+ cp -u $(MAIN).bib $(TDS)/source/$(PACKAGE)/
+ cp -u Makefile $(TDS)/source/$(PACKAGE)/
+
+
+# EOF