summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-09-16 07:49:39 -0700
committerBen Longbons <b.r.longbons@gmail.com>2011-09-16 07:49:39 -0700
commite2df948b8aa425b81cb9fbdb39d5262e6be4f8cf (patch)
tree1c996d668babb9aa73945cd02a21294232522066
parent8f4e4e9a92f6af89820a358ab99b990697117502 (diff)
downloadtmwa-e2df948b8aa425b81cb9fbdb39d5262e6be4f8cf.tar.gz
tmwa-e2df948b8aa425b81cb9fbdb39d5262e6be4f8cf.tar.bz2
tmwa-e2df948b8aa425b81cb9fbdb39d5262e6be4f8cf.tar.xz
tmwa-e2df948b8aa425b81cb9fbdb39d5262e6be4f8cf.zip
Fix compiler warnings and enable optimization for release.
-rw-r--r--make.defs2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.defs b/make.defs
index debf3aa..0db7c73 100644
--- a/make.defs
+++ b/make.defs
@@ -1,7 +1,7 @@
# defaults
CC = gcc
BISON = bison
-CFLAGS = -pipe -g @warnings
+CFLAGS = -pipe -g -O2
# works on both x86 and x86_64
override CC += -m32 -std=gnu99