initial: Makefile for ink.svg -> pdf

This commit is contained in:
john stone 2013-03-25 12:21:55 +01:00
commit 5ba329a890
2 changed files with 13 additions and 0 deletions

0
fonts/PutFontsInHere Normal file
View File

13
logo/Makefile Normal file
View File

@ -0,0 +1,13 @@
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)