diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-08-03 14:17:00 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-08-04 12:22:37 -0400 |
commit | 2fb8418db686e1bf7d41d091054a5d01f0e37324 (patch) | |
tree | 4094016e8ce2acd5839bdd43b017094a65297000 /Makefile | |
parent | ab9c63852d53a6991ccbab6111645d949909ba04 (diff) | |
download | kd-forest-2fb8418db686e1bf7d41d091054a5d01f0e37324.tar.xz |
Clean up and correct nearest-neighbor algorithm.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ ##################################################################### CC ?= gcc -CFLAGS ?= -std=c99 -pipe -O2 -flto -Werror -Wall -Wpedantic -Wextra -Wno-sign-compare -Wno-unused-parameter -Wunreachable-code -Wshadow -Wpointer-arith -Wwrite-strings -Wcast-align -Wstrict-prototypes +CFLAGS ?= -std=c99 -pipe -g -O3 -flto -Werror -Wall -Wpedantic -Wextra -Wno-sign-compare -Wno-unused-parameter -Wunreachable-code -Wshadow -Wpointer-arith -Wwrite-strings -Wcast-align -Wstrict-prototypes LDFLAGS ?= -Wl,-O1,--sort-common,--as-needed,-z,relro LIBS ?= -lm -lpng RM ?= rm -f |