PDF_FIGURES = dummy.pdf

%.pdf : %.fig
	fig2dev -L pdf $< > $@

all: pdf

pdf : $(PDF_FIGURES)

clean : 
# Empyt at the moment  -- remove some auxiliary files

distclean: clean
	rm -f dummy.pdf 

.PHONY: clean distclean
