From 7c373a68e837e4183bee65a046623d7957f44d6b Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@tavianator.com>
Date: Thu, 7 Aug 2014 17:23:45 -0400
Subject: Make Makefile command lines explicit.

---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index 0e1ba9d..b49887b 100644
--- a/Makefile
+++ b/Makefile
@@ -26,14 +26,14 @@ kd-forest: color.o kd-forest.o main.o options.o util.o
 image: kd-forest.png
 
 kd-forest.png: kd-forest
-	./kd-forest -b 24 -s -c Lab -o kd-forest.png
+	./kd-forest -b 24 -s -l min -c Lab -o kd-forest.png
 
 anim: kd-forest.mkv
 
 kd-forest.mkv: kd-forest
 	$(RM) kd-forest.mkv
 	mkdir /tmp/kd-frames
-	./kd-forest -b 21 -s -l mean -c Lab -a -o /tmp/kd-frames
+	./kd-forest -b 19 -s -l mean -c Lab -a -o /tmp/kd-frames
 	ffmpeg -r 60 -i /tmp/kd-frames/%04d.png -c:v libx264 -preset veryslow -qp 0 kd-forest.mkv
 	$(RM) -r /tmp/kd-frames
 
-- 
cgit v1.2.3