mirror of
https://codeberg.org/ET-Kiel/C-V.git
synced 2026-05-01 16:04:24 +02:00
18 lines
203 B
Makefile
18 lines
203 B
Makefile
|
|
PSTOPS=pstops
|
||
|
|
PDF2PS=pdf2ps
|
||
|
|
PS2PDF=ps2pdf14 -dEPSCrop
|
||
|
|
PDFLATEX=pdflatex
|
||
|
|
PS2EPS=ps2eps
|
||
|
|
|
||
|
|
%.pdf: %.eps
|
||
|
|
$(PS2PDF) $< $@
|
||
|
|
|
||
|
|
%.eps: %.ps
|
||
|
|
$(PS2EPS) $< >$@
|
||
|
|
|
||
|
|
%.ps: %_a4.pdf
|
||
|
|
$(PDF2PS) $< $@
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f *.eps
|
||
|
|
|