From 6a89b4d2b0ec8fbac60d58363e102734d505c9fa Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sun, 3 Aug 2008 23:03:15 -0500 Subject: Create crude Makefile --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7d1efbe --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +GENERATE = python generate.py +GENERATE_OPTIONS = +INKSCAPE = /usr/bin/inkscape +INKSCAPE_OPTIONS = --export-dpi=300 --without-gui + +all: out.png + +out.svg: + $(GENERATE) $(GENERATE_OPTIONS) + +out.png: out.svg + $(INKSCAPE) $(INKSCAPE_OPTIONS) --export-area-canvas --export-png=out.png out.svg -- cgit