phd-defense/slides/assets/Makefile

13 lines
199 B
Makefile
Raw Normal View History

2024-11-19 00:12:26 +01:00
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)