mirror of https://github.com/CGAL/cgal
23 lines
371 B
Makefile
23 lines
371 B
Makefile
%.dvi: %.tex
|
|
@latex $*
|
|
@bibtex $* || echo "no bibtex needed"
|
|
@makeindex $*
|
|
@latex $*
|
|
@latex $*
|
|
|
|
%.ps: %.dvi
|
|
dvips -D 600 -t a4 $*.dvi -o $*.ps
|
|
|
|
%.ps.gz: %.ps
|
|
rm -f $*.ps.gz
|
|
gzip $*.ps
|
|
|
|
|
|
all: cc_manual.ps.gz cc_manual_index.ps.gz latex_to_html.ps.gz tidyup
|
|
|
|
tidyup:
|
|
@rm -f *.log *.aux *.dvi *.bbl *.blg *.toc *.idx *.ilg *.ind
|
|
|
|
clean: tidyup
|
|
@rm -f *.ps.gz *.ps
|