summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMadCamel <madcamel@gmail.com>2009-09-30 13:58:34 -0400
committerMadCamel <madcamel@gmail.com>2009-09-30 13:58:34 -0400
commit592170e732fd5b75cf1447ed33e8999541048db8 (patch)
treed3ba7169a077ea7975c41c3ab68027be747df017 /Makefile
parent3fc3d83aa0be31e6d51afac54ff76b447f99f711 (diff)
parentbf517943387f364ad7b11854d803a84612f8cf60 (diff)
downloadtmwa-592170e732fd5b75cf1447ed33e8999541048db8.tar.gz
tmwa-592170e732fd5b75cf1447ed33e8999541048db8.tar.bz2
tmwa-592170e732fd5b75cf1447ed33e8999541048db8.tar.xz
tmwa-592170e732fd5b75cf1447ed33e8999541048db8.zip
Merge branch 'master' of git@gitorious.org:~madcamel/tmw-eathena/thealternateworld
Conflicts: src/common/utils.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6d378dc..a697e4f 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 -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE)
+CFLAGS = $(OPT) -Wall -fno-strict-aliasing -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE)
else
OS_TYPE =
-CFLAGS = $(OPT) -Wall -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE)
+CFLAGS = $(OPT) -Wall -fno-strict-aliasing -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE)
endif
MKDEF = CC="$(CC)" CFLAGS="$(CFLAGS)"