diff options
author | Karl Berry <karl@freefriends.org> | 2006-11-30 04:07:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-11-30 04:07:01 +0000 |
commit | d020974aa866ebf75c1a7136213c03c015c7402d (patch) | |
tree | c362e2511d64cefaf2b876bb39578952fc7742dc /Master/texmf-dist/source/generic/pst-fill/Makefile | |
parent | 0e16c58d10670a29d73183de0640f72f0857c829 (diff) |
new pstricks pst-eps, pst-fill, pst-text
git-svn-id: svn://tug.org/texlive/trunk@2560 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/generic/pst-fill/Makefile')
-rw-r--r-- | Master/texmf-dist/source/generic/pst-fill/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/generic/pst-fill/Makefile b/Master/texmf-dist/source/generic/pst-fill/Makefile new file mode 100644 index 00000000000..3d55734c181 --- /dev/null +++ b/Master/texmf-dist/source/generic/pst-fill/Makefile @@ -0,0 +1,48 @@ + +# `Makefile' for `pst-fill.pdf', hv, 2006/08/11 + +.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps + +MAIN = pst-fill + +LATEX = latex + +ARCHNAME = $(MAIN)-$(shell date +%y%m%d) + +ARCHFILES = $(MAIN).dtx $(MAIN).ins Makefile + +all : $(MAIN).sty doc clean + +$(MAIN).sty : $(MAIN).dtx +%.sty : %.dtx + tex $(basename $<).ins + +doc: $(MAIN).pdf + +$(MAIN).pdf : $(MAIN).ps + GS_OPTIONS=-dAutoRotatePages=/None ps2pdf $< + +$(MAIN).ps : $(MAIN).dvi + dvips $< + +$(MAIN).dvi : $(MAIN).dtx + $(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 -s gind.ist -t $(basename $<).ilg -o $(basename $<).ind \ + $(basename $<).idx + $(LATEX) $< + +clean : + $(RM) $(addprefix $(MAIN), .log .aux .glg .glo .gls .ilg .idx .ind .tmp .toc .out) + $(RM) $(addprefix $(MAIN), .dvi .ps) + +veryclean : clean + $(RM) $(MAIN).pdf + +arch : + zip $(ARCHNAME).zip $(ARCHFILES) + +# EOF |