cgal/Packages/Tutorial/tutorial/Polyhedron/doc/makefile

30 lines
564 B
Makefile

tex:
latex tutorial
latex tutorial
ls -l *.dvi
ps:
dvips -Ppdf -G0 -t letter -z -o tutorial.ps tutorial.dvi
ls -l *.ps
pdf:
ps2pdf -dMaxSubsetPct=100 -dCompatibilityLevel=1.2 -dSubsetFonts=true -dEmbedAllFonts=true -dAntiAliasColorImages=true -dColorImageResolution=1200 -dEncodeColorImages#true -dAutoFilterColorImages#false -dColorImageFilter#/FlateEncode tutorial.ps tutorial.pdf
all:
make tex
make ps
make pdf
make clean
\rm *.ps *.tmp
clear
ls -l
clean:
\rm *.aux *.dvi *.log *.out *.blg *.bbl
superclean:
\rm *.ps *.pdf *~
make clean