commit 5ba329a89087c9600397432921462cd20b25229b Author: john stone Date: Mon Mar 25 12:21:55 2013 +0100 initial: Makefile for ink.svg -> pdf diff --git a/fonts/PutFontsInHere b/fonts/PutFontsInHere new file mode 100644 index 0000000..e69de29 diff --git a/logo/Makefile b/logo/Makefile new file mode 100644 index 0000000..4768ccb --- /dev/null +++ b/logo/Makefile @@ -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)