diff options
author | Karl Berry <karl@freefriends.org> | 2011-08-29 00:11:34 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-08-29 00:11:34 +0000 |
commit | 32cbcbb847392140d904acb38ae3bbe09cb2cc9e (patch) | |
tree | abde8b381521269171e36ee82d03ba5998dc2e0f /Master/texmf-dist/doc/latex/rviewport/Makefile | |
parent | 62ea3c38421c330e364e1b53c366715efe3c7554 (diff) |
new latex package rviewport (28aug11)
git-svn-id: svn://tug.org/texlive/trunk@23739 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/rviewport/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/rviewport/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/rviewport/Makefile b/Master/texmf-dist/doc/latex/rviewport/Makefile new file mode 100644 index 00000000000..fa708bee2e6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/rviewport/Makefile @@ -0,0 +1,47 @@ +# +# Makefile for rviewport package +# +# This file is in public domain +# +# $Id: Makefile,v 1.1 2011-08-27 22:46:19 boris Exp $ +# + +PACKAGE=rviewport + +all: $(PACKAGE).pdf + + +%.pdf: %.dtx $(PACKAGE).sty + pdflatex $< + - bibtex $* + pdflatex $< + - makeindex -s gind.ist -o $*.ind $*.idx + - makeindex -s gglo.ist -o $*.gls $*.glo + pdflatex $< + while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ + do pdflatex $<; done + + +%.sty: %.ins %.dtx + pdflatex $< + + + +.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).sty + + +clean: + $(RM) $(PACKAGE).sty $(PACKAGE).log $(PACKAGE).aux \ + $(PACKAGE).cfg $(PACKAGE).glo $(PACKAGE).idx $(PACKAGE).toc \ + $(PACKAGE).ilg $(PACKAGE).ind $(PACKAGE).out $(PACKAGE).lof \ + $(PACKAGE).lot $(PACKAGE).bbl $(PACKAGE).blg $(PACKAGE).gls \ + $(PACKAGE).dvi $(PACKAGE).ps *.hd + +distclean veryclean: clean + $(RM) $(PACKAGE).pdf + +# +# Archive for the distribution. Includes typeset documentation +# +archive: all clean + tar -czvf $(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude CVS . |