summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/xhfill/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/xhfill/Makefile')
-rw-r--r--macros/latex/contrib/xhfill/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/macros/latex/contrib/xhfill/Makefile b/macros/latex/contrib/xhfill/Makefile
new file mode 100644
index 0000000000..a897b5c733
--- /dev/null
+++ b/macros/latex/contrib/xhfill/Makefile
@@ -0,0 +1,34 @@
+# `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
+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