phd-thesis/manuscrit/assets/Makefile

13 lines
199 B
Makefile
Raw Normal View History

SVGS=$(shell find . -iname '*.svg')
SVG_PDFS=$(SVGS:=.pdf)
all: svg_pdfs
svg_pdfs: $(SVG_PDFS)
%.svg.pdf: %.svg
inkscape --export-type=pdf --export-filename "$@" "$<"
clean:
rm -rf $(SVG_PDFS)