From ca3347f21d41a7cabddabfb1a0c81aecb65873ef Mon Sep 17 00:00:00 2001 From: Daniel Eisele Date: Wed, 23 Aug 2017 21:48:29 +0200 Subject: [PATCH] Use platform-independent compiler name; remove debug symbols; add -Wextra --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 1f9bdf0..62ce6ed 100644 --- a/makefile +++ b/makefile @@ -2,8 +2,8 @@ VERSION = 1.0 -CC = gcc -CFLAGS = -Wall -g -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" +CC = cc +CFLAGS = -Wall -Wextra -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" #LDFLAGS = -lm -lpthread `gtk-config --cflags` `gtk-config --libs` -lgthread LDFLAGS = -lncurses