diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-08-07 17:23:45 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-08-07 17:23:45 -0400 |
commit | 7c373a68e837e4183bee65a046623d7957f44d6b (patch) | |
tree | 27397167e6295b9b25761e2a0d078b08e55506e7 | |
parent | 31310841afd7c969c4a9a57a6f49172f1f5a8b93 (diff) | |
download | kd-forest-7c373a68e837e4183bee65a046623d7957f44d6b.tar.xz |
Make Makefile command lines explicit.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |