diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2015-10-04 13:36:25 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-10-04 13:36:25 -0400 |
commit | f0bc8b8ddbd1ef1041f1249d510bb379903777d5 (patch) | |
tree | 4b11e28a59986e5d0e5d83326c1e6dabbefc6a04 /Makefile | |
parent | c6ae17f774721875a2833b1138bad9f516a72003 (diff) | |
download | kd-forest-f0bc8b8ddbd1ef1041f1249d510bb379903777d5.tar.xz |
Add support for Hilbert order.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |