From a3fb8663ef58f3a7bf4c928799b101ccab906a81 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sat, 31 Jan 2009 21:45:10 -0600 Subject: [PATCH] Add work-in-progress Makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2f5780f --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +jpg = $(patsubst %.flame,%.jpg,$(wildcard *.flame)) +png = $(patsubst %.flame,%.png,$(wildcard *.flame)) +xcf = $(patsubst %.flame,%.xcf,$(wildcard *.flame)) + +all: $(png) + +%.png: %.flame + env format=png use_mem=1024M nstrips=1 transparency=1 flam3-render < $< + +clean: + rm -f *.jpg *.png *.xcf -- 2.11.4.GIT