From c6ae17f774721875a2833b1138bad9f516a72003 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 3 Oct 2015 19:46:11 -0400 Subject: Add support for Morton order. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3