schleuderpackung/img/Makefile

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 $<