diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-03-11 19:51:47 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-03-11 19:55:07 -0400 |
commit | 746fdfc554b5584476df93b6c8717d04814cc2d4 (patch) | |
tree | cf18375a8e7561767315b339365ad5f288a9137b /Makefile | |
parent | cd9936f9b09720c949c5fe8262eca45c31244fe3 (diff) | |
download | kd-forest-746fdfc554b5584476df93b6c8717d04814cc2d4.tar.xz |
Allow different color spaces to be used for similarity measurement.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,8 +14,8 @@ CFLAGS ?= -std=c99 -pipe -O2 -Werror -Wall -Wpedantic -Wextra -Wno-sign-compare LDFLAGS ?= -lm -lpng RM ?= rm -f -kd-forest: kd-forest.c kd-forest.h util.c util.h main.c - $(CC) $(CFLAGS) $(LDFLAGS) -o kd-forest kd-forest.c util.c main.c +kd-forest: kd-forest.c kd-forest.h util.c util.h color.c color.h main.c + $(CC) $(CFLAGS) $(LDFLAGS) -o kd-forest kd-forest.c util.c color.c main.c image: kd-forest ./kd-forest |