diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-08-06 12:51:13 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-08-06 12:51:13 -0400 |
commit | 1865067cbbb02c3bb5c27cee18d134cc19bbe0b3 (patch) | |
tree | 0d7a268c09c4304a91fa74547a0a9a8ca589c2e8 /Makefile | |
parent | a30419c2781cbfbb87dd3c8b3c832be471afeeb0 (diff) | |
download | kd-forest-1865067cbbb02c3bb5c27cee18d134cc19bbe0b3.tar.xz |
No need for question marks.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -9,11 +9,11 @@ # the COPYING file or http://www.wtfpl.net/ for more details. # ##################################################################### -CC ?= gcc -CFLAGS ?= -std=c99 -D_POSIX_C_SOURCE=200809L -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 +CC = gcc +CFLAGS = -std=c99 -D_POSIX_C_SOURCE=200809L -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 HEADERS = color.h kd-forest.h options.h util.h |