From 1865067cbbb02c3bb5c27cee18d134cc19bbe0b3 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 6 Aug 2014 12:51:13 -0400 Subject: No need for question marks. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index ae18799..b611bdf 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3