#---*- Makefile -*-------------------------------------------------------
#$Author: saulius $
#$Date: 2019-03-07 15:28:04 +0000 (Thu, 07 Mar 2019) $
#$Revision: 182 $
#$URL: svn+ssh://saulius-grazulis.lt/home/saulius/svn-repositories/makefiles/latex-figures/Makelocal-latex-figures $
#------------------------------------------------------------------------

# Convert various figure formats for LaTeX.

%.eps: %.fig
	fig2dev -L eps $< $@

%.pstex_t: %.fig
	fig2dev -L pstex_t -p ${@:%_t=%} $< > $@
	fig2dev -L pstex $< > ${@:%_t=%}

%.eps: %.svg
	inkscape --export-eps=$@ $<

%.eps.gz: %.png
	pngtopnm $< | pnmtops -noturn | gzip -vc > $@

%.eps.gz: %.jpg
	jpegtopnm $< | pnmtops -noturn | gzip -vc > $@

%.eps.gz: %.jpeg
	jpegtopnm $< | pnmtops -noturn | gzip -vc > $@

%.eps.gz: %.tif
	tifftopnm $< | pnmtops -noturn | gzip -vc > $@

%.eps.gz: %.gif
	giftopnm $< | pnmtops -noturn | gzip -vc > $@

%.eps.gz: %.pdf
	pdftops $< - | gzip -vc > $@

%.eps.bb: %.eps.gz
	zcat $< | grep '%%BoundingBox' > $*.eps.bb
