diff -r e7733f825982 -r f228415225b7 documentation/images/Makefile --- a/documentation/images/Makefile Thu Jan 21 11:09:31 2010 +0100 +++ b/documentation/images/Makefile Thu Jan 21 11:10:22 2010 +0100 @@ -6,7 +6,6 @@ FIGS := \ app-config.fig \ - architecture.fig \ attach.fig \ dc.fig \ fmmus.fig \ @@ -18,14 +17,22 @@ phases.fig \ statetrans.fig -PDFS = $(FIGS:.fig=.pdf) +FIGPDFS = $(FIGS:.fig=.pdf) -all: $(PDFS) +SVGS := \ + architecture.svg + +SVGPDFS = $(SVGS:.svg=.pdf) + +all: $(FIGPDFS) $(SVGPDFS) %.pdf: %.fig fig2dev -L pdf -z A4 -p xxx -c $< $@ +%.pdf: %.svg + inkscape --export-pdf=$@ $< + clean: - @rm -rv $(PDFS) + @rm -rv $(FIGPDFS) $(SVGPDFS) #-----------------------------------------------------------------------------