#! Last edited on 2009-11-30 03:12:39 by stolfi

EPSFILES := ${wildcard *.eps}
PNGFILES := ${subst .eps,.png,${EPSFILES}}

all: ${PNGFILES}

%.png: %.eps
	convert $*.eps -density 300 $*.png