12 lines
149 B
Makefile
12 lines
149 B
Makefile
|
|
PSTOPS=pstops
|
||
|
|
PDF2PS=pdf2ps
|
||
|
|
PS2PDF=ps2pdf14 -dEPSCrop
|
||
|
|
PDFLATEX=pdflatex
|
||
|
|
PS2EPS=ps2epsi
|
||
|
|
|
||
|
|
%.pdf: %.eps
|
||
|
|
$(PS2PDF) $< $@
|
||
|
|
|
||
|
|
%.eps: %.ps
|
||
|
|
$(PS2EPS) $< $@
|
||
|
|
|