summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/xhfill/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/xhfill/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/xhfill/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/xhfill/Makefile b/Master/texmf-dist/doc/latex/xhfill/Makefile
new file mode 100644
index 00000000000..f065fefe59a
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/xhfill/Makefile
@@ -0,0 +1,35 @@
+
+# `Makefile' for `pst-3dplot.pdf', hv, 2007/03/17
+
+.SUFFIXES : .tex .ltx pdf
+
+PACKAGE = xhfill
+
+MAIN = $(PACKAGE)-doc
+
+LATEX = pdflatex
+
+ARCHNAME = $(MAIN)-$(shell date +%y%m%d)
+
+ARCHFILES = $(PACKAGE).sty $(PACKAGE).tex $(PACKAGE).pro $(MAIN).tex README Changes Makefile
+
+all : doc clean tds
+doc: $(MAIN).pdf
+
+$(MAIN).pdf : $(MAIN).tex
+ $(LATEX) $<
+ if ! test -f $(basename $<).glo ; then touch $(basename $<).glo; fi
+ if ! test -f $(basename $<).idx ; then touch $(basename $<).idx; fi
+ $(LATEX) $<
+
+clean :
+ $(RM) $(addprefix $(MAIN), .log .aux .glg .glo .gls .ilg .idx .ind .tmp .toc .out .blg .bbl )
+ $(RM) $(addprefix $(MAIN), .xcp)
+
+veryclean : clean
+ $(RM) $(addprefix $(MAIN), .pdf .bbl .blg)
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+# EOF