This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
2019-09-02 21:23:14 +02:00
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
SVGFILES := $(wildcard svg/*.svg)
|
|
|
|
|
|
|
|
all: libreto.pdf
|
|
|
|
|
2019-09-03 12:34:07 +02:00
|
|
|
pdf:
|
|
|
|
mkdir pdf
|
|
|
|
|
|
|
|
pdf/%.pdf: svg/%.svg pdf
|
2019-09-02 21:23:14 +02:00
|
|
|
inkscape -C -f $< -A $@
|
|
|
|
|
|
|
|
libreto.pdf: $(SVGFILES:svg/%.svg=pdf/%.pdf)
|
|
|
|
pdftk pdf/*pdf cat output libreto.pdf
|