From f0bc8b8ddbd1ef1041f1249d510bb379903777d5 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 4 Oct 2015 13:36:25 -0400 Subject: Add support for Hilbert order. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6041235..4e035e0 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 generate.h kd-forest.h options.h util.h +DEPS = Makefile color.h hilbert.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 generate.o kd-forest.o main.o options.o util.o +kd-forest: color.o generate.o hilbert.o kd-forest.o main.o options.o util.o $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o kd-forest %.o: %.c $(DEPS) -- cgit v1.2.3