12 lines
123 B
Makefile
12 lines
123 B
Makefile
SVGS= $(wildcard *.svg)
|
|
IMGS= $(SVGS:.svg=.pdf)
|
|
|
|
|
|
all: $(IMGS)
|
|
|
|
%.pdf: %.svg
|
|
inkscape -z -T -A $@ $<
|
|
|
|
clean:
|
|
rm -f *.pdf
|