summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadCamel <madcamel@gmail.com>2009-10-23 11:48:12 -0400
committerMadCamel <madcamel@gmail.com>2009-10-23 11:48:12 -0400
commit35044714f13629ee6951aaa7a03d409428fdd4e4 (patch)
treed2ecbbb31c0d678c7ecdc60fd8b9eba0b89f8467
parent06d0d5e83c628c0117cbd057fde6ae8bcba13e12 (diff)
downloadtmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.tar.gz
tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.tar.bz2
tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.tar.xz
tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.zip
Removed duplicate compile flag
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a697e4f..6d378dc 100644
--- a/Makefile
+++ b/Makefile
@@ -18,10 +18,10 @@ OPT = -g -fno-strict-aliasing -O2 ${M32}
ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN)
OS_TYPE = -DCYGWIN
-CFLAGS = $(OPT) -Wall -fno-strict-aliasing -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE)
+CFLAGS = $(OPT) -Wall -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE)
else
OS_TYPE =
-CFLAGS = $(OPT) -Wall -fno-strict-aliasing -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE)
+CFLAGS = $(OPT) -Wall -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE)
endif
MKDEF = CC="$(CC)" CFLAGS="$(CFLAGS)"