summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-05-16 17:50:57 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-05-16 17:50:57 -0400
commit1687c00b1642d1e2fe3fbfe4eedf93123e1d6804 (patch)
tree97543919ae97a097658ff525597740d0e86ab6a7 /Makefile
parent9dbdaeafa0a9f72ff2d55aa5cafbed664861f8a3 (diff)
downloadkd-forest-1687c00b1642d1e2fe3fbfe4eedf93123e1d6804.tar.xz
Refactor main.c to take configuration on the command line instead of #defines.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b55c57c..a4f8280 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ kd-forest: kd-forest.c kd-forest.h util.c util.h color.c color.h main.c
$(CC) $(CFLAGS) $(LDFLAGS) kd-forest.c util.c color.c main.c $(LIBS) -o kd-forest
kd-forest.png: kd-forest
- ./kd-forest
+ ./kd-forest -b 24 -s -c Lab -o kd-forest.png
image: kd-forest.png