schleuderpackung/img/Makefile
2013-07-23 03:00:59 +02:00

14 lines
165 B
Makefile

PDFS= Logo_CCC.pdf pesthoernchen.pdf
all: $(PDFS)
clean:
rm $(PDFS)
%.pdf: %.svg
inkscape --export-pdf=$@ $<
%.png: %.svg
inkscape --export-png=$@ -w1000 $<