From 5ba329a89087c9600397432921462cd20b25229b Mon Sep 17 00:00:00 2001 From: john stone Date: Mon, 25 Mar 2013 12:21:55 +0100 Subject: [PATCH] initial: Makefile for ink.svg -> pdf --- fonts/PutFontsInHere | 0 logo/Makefile | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 fonts/PutFontsInHere create mode 100644 logo/Makefile 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)