diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-15 06:38:48 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-15 06:38:48 -0600 |
commit | d6dbf554bd866124b7c676187c351c3f67fd3906 (patch) | |
tree | 2301dbf20ee0994963ccebfd1c5f7fd73e08a200 /Makefile | |
parent | a11a55e91bd25f52eac46a99f4c906e773245046 (diff) | |
parent | 29844ce5e2cd043551b46c1cd7bf3a36e357e3c6 (diff) | |
download | tmwa-d6dbf554bd866124b7c676187c351c3f67fd3906.tar.gz tmwa-d6dbf554bd866124b7c676187c351c3f67fd3906.tar.bz2 tmwa-d6dbf554bd866124b7c676187c351c3f67fd3906.tar.xz tmwa-d6dbf554bd866124b7c676187c351c3f67fd3906.zip |
Merge remote branch 'taw/master'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,14 +14,14 @@ else MAKE = make endif -OPT = -g -O2 ${M32} +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)" |