# Makefile for the J3 standing document 007 (F2k draft). # Richard Maine. 14 Jan 02. # Requires LaTeX with several add-on packages and pdflatex. # The TeTeX distrbution in redHat 7.2 is sufficient. # Also requires pdftotext, which comes with xpdf. .PHONY: clean all: 007.dvi 007.ps 007.pdf 007.txt 007.dvi: *.tex echo >options.inc @rm -f 007.toc latex 007 makeindex 007.idx -s j3.ist makeindex -o 007.itp 007.itr -s j3.ist cp 007.irr 007.irp latex 007 latex 007 007.ps: 007.dvi dvips -t letter -o 007.ps 007 007.pdf: 007.dvi echo "\pdf" >options.inc pdflatex 007 rm 007.toc echo >options.inc 007.txt: 007.pdf pdftotext 007.pdf 007.txt install: all mv 007.ps 007.pdf 007.txt .. # All does not include this. ui-index.txt: 007.dvi grep -h "Unresolved issue" c*aux | sort >issues.inc latex ui-index pdflatex ui-index pdftotext ui-index.pdf ui-index.txt clean: @rm -f *.aux *.log 007.i* 007.toc 007.lot 007.cb issues.inc @rm -f *.dvi *.ps *.pdf 007.txt ui-index.txt