diff options
author | Karl Berry <karl@freefriends.org> | 2006-12-08 00:02:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-12-08 00:02:46 +0000 |
commit | 5791cacf8ba247681240821f638dfcc015346e7e (patch) | |
tree | cc081d3e87fd627fb99116fb125c0dd639685a0b /Master/texmf-dist/doc/bibtex/ijqc/makefile | |
parent | 3b34db92d183b1c0f4e1d5114c50c87afb0c08c5 (diff) |
new bibtex package ijqc (6dec06)
git-svn-id: svn://tug.org/texlive/trunk@2621 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/bibtex/ijqc/makefile')
-rw-r--r-- | Master/texmf-dist/doc/bibtex/ijqc/makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/bibtex/ijqc/makefile b/Master/texmf-dist/doc/bibtex/ijqc/makefile new file mode 100644 index 00000000000..a533c885667 --- /dev/null +++ b/Master/texmf-dist/doc/bibtex/ijqc/makefile @@ -0,0 +1,45 @@ +.SUFFIXES: .ps .dvi .tex .pdf .gz .eps + +.dvi.ps : + dvips -K -t letter $* + gv $@ + +.tex.ps : + make $*.dvi + make $*.ps + +.tex.pdf : + pdflatex $* + - while ( fgrep -s Rerun $*.log ) ; do \ + pdflatex $* ; \ + done + +.tex.dvi : + - until ( latex $* ) ; do \ + continue ; \ + done + - while ( fgrep -s 'No file $*' $*.log ) ; do \ + latex $* ; \ + done + - while ( fgrep -s Rerun $*.log ) ; do \ + latex $* ; \ + done + +all: xampl.pdf + acroread -geometry 700x1000 $< + +xampl.pdf: xampl.bbl + pdflatex xampl + - while ( fgrep -s Rerun $*.log ) ; do \ + pdflatex xampl ; \ + done + +xampl.bbl: xampl.tex mybib.bib + # latex xampl + pdflatex xampl + bibtex -terse xampl + +xampl.ps: xampl.dvi xampl.bbl + +clean: + rm *.bbl *.blg *.dvi *.aux *.log xampl.ps |