12 lines
199 B
Makefile
12 lines
199 B
Makefile
|
.PHONY: all
|
||
|
|
||
|
SVGFILES := $(wildcard svg/*.svg)
|
||
|
|
||
|
all: libreto.pdf
|
||
|
|
||
|
pdf/%.pdf: svg/%.svg
|
||
|
inkscape -C -f $< -A $@
|
||
|
|
||
|
libreto.pdf: $(SVGFILES:svg/%.svg=pdf/%.pdf)
|
||
|
pdftk pdf/*pdf cat output libreto.pdf
|