diff options
author | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
commit | e0c6872cf40896c7be36b11dcc744620f10adf1d (patch) | |
tree | 60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/xhfill/Makefile |
Initial commit
Diffstat (limited to 'macros/latex/contrib/xhfill/Makefile')
-rw-r--r-- | macros/latex/contrib/xhfill/Makefile | 34 |
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 |