ds2013/logo/Makefile

14 lines
159 B
Makefile
Raw Permalink Normal View History

2013-03-25 12:21:55 +01:00
ALL_INKSVG := $(wildcard ./*.ink.svg)
ALL_PDF=$(ALL_INKSVG:.ink.svg=.pdf)
all: $(ALL_PDF)
%.pdf : %.ink.svg
inkscape -T -A $@ $<
clean :
rm $(ALL_PDF)