From 900666fca5a86675cb35ffa3f710837b197c480e Mon Sep 17 00:00:00 2001 Message-Id: <900666fca5a86675cb35ffa3f710837b197c480e.1717858718.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 21 May 2006 03:19:19 +0200 Subject: [PATCH] Add -O2 to CFLAGS to get more warnings Organization: Straylight/Edgeware From: Jonas Fonseca --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 78d47a4..fb0e31e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PREFIX = $(HOME) LDLIBS = -lcurses -CFLAGS = -Wall +CFLAGS = -Wall -O2 DFLAGS = -g -DDEBUG -Werror PROGS = tig DOCS = tig.1.txt tig.1.html tig.1 README.html -- [mdw]