Skip to content
Snippets Groups Projects
Commit dd00c80a authored by Florian Pose's avatar Florian Pose
Browse files

Auto-generate architecture pdf.

parent c4417597
No related branches found
No related tags found
No related merge requests found
...@@ -17,14 +17,22 @@ FIGS := \ ...@@ -17,14 +17,22 @@ FIGS := \
phases.fig \ phases.fig \
statetrans.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 %.pdf: %.fig
fig2dev -L pdf -z A4 -p xxx -c $< $@ fig2dev -L pdf -z A4 -p xxx -c $< $@
%.pdf: %.svg
inkscape --export-pdf=$@ $<
clean: clean:
@rm -rv $(PDFS) @rm -rv $(FIGPDFS) $(SVGPDFS)
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment