diff options
author | MadCamel <madcamel@gmail.com> | 2009-10-23 11:48:12 -0400 |
---|---|---|
committer | MadCamel <madcamel@gmail.com> | 2009-10-23 11:48:12 -0400 |
commit | 35044714f13629ee6951aaa7a03d409428fdd4e4 (patch) | |
tree | d2ecbbb31c0d678c7ecdc60fd8b9eba0b89f8467 /Makefile | |
parent | 06d0d5e83c628c0117cbd057fde6ae8bcba13e12 (diff) | |
download | tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.tar.gz tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.tar.bz2 tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.tar.xz tmwa-35044714f13629ee6951aaa7a03d409428fdd4e4.zip |
Removed duplicate compile flag
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)" |