diff --git a/documentation/images/Makefile b/documentation/images/Makefile index cfd80647..098bcc05 100644 --- a/documentation/images/Makefile +++ b/documentation/images/Makefile @@ -17,14 +17,22 @@ FIGS := \ 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) #-----------------------------------------------------------------------------