summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2015-10-03 19:46:11 -0400
committerTavian Barnes <tavianator@tavianator.com>2015-10-04 13:23:17 -0400
commitc6ae17f774721875a2833b1138bad9f516a72003 (patch)
tree258f1902791f50ab9b6fb83325411bd876d08713 /Makefile
parent328b647f8afc26af5ffaea124161682484f0c85e (diff)
downloadkd-forest-c6ae17f774721875a2833b1138bad9f516a72003.tar.xz
Add support for Morton order.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index da25811..6041235 100644
--- a/Makefile
+++ b/Makefile
@@ -15,12 +15,12 @@ LDFLAGS = -Wl,-O1,--sort-common,--as-needed,-z,relro
LIBS = -lm -lpng
RM = rm -f
-DEPS = Makefile color.h kd-forest.h options.h util.h
+DEPS = Makefile color.h generate.h kd-forest.h options.h util.h
IMAGEFLAGS = -b 24 -s -l min -c Lab
ANIMFLAGS = -b 19 -s -l mean -c Lab
-kd-forest: color.o kd-forest.o main.o options.o util.o
+kd-forest: color.o generate.o kd-forest.o main.o options.o util.o
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o kd-forest
%.o: %.c $(DEPS)