mirror of https://github.com/CGAL/cgal
17 lines
349 B
Makefile
17 lines
349 B
Makefile
|
|
all: to_ps to_html
|
|
|
|
to_html:
|
|
cc_manual_to_html -o html -extended Example/html_wrapper.tex Example2/html_wrapper.tex Example_ref/html_wrapper.tex
|
|
|
|
to_ps:
|
|
latex manual.tex
|
|
makeindex manual
|
|
index_fix manual.ind
|
|
latex manual.tex
|
|
dvips -o manual.ps manual.dvi
|
|
gzip -f manual.ps
|
|
|
|
clean:
|
|
\rm -f *.aux *.log *.dvi *.idx *.ilg *.ind *.ind.unfixed
|