summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMadCamel <madcamel@gmail.com>2009-04-22 19:02:46 +0000
committerJared Adams <jaxad0127@gmail.com>2009-04-22 13:26:56 -0600
commite3b1c53ecd84c871d1adf3dcccf25622799f29d6 (patch)
tree2a1d5e206383ec7103920d85334f3ed77f1ef1f0 /Makefile
parent0c846c8806aab3f6e45550fe85f977b049d168a1 (diff)
downloadtmwa-e3b1c53ecd84c871d1adf3dcccf25622799f29d6.tar.gz
tmwa-e3b1c53ecd84c871d1adf3dcccf25622799f29d6.tar.bz2
tmwa-e3b1c53ecd84c871d1adf3dcccf25622799f29d6.tar.xz
tmwa-e3b1c53ecd84c871d1adf3dcccf25622799f29d6.zip
Removed compiler warnings for pointer signedness to make more important warnings more visible
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 550c238..926228b 100644
--- a/Makefile
+++ b/Makefile
@@ -18,10 +18,10 @@ OPT = -g -O2 ${M32}
ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN)
OS_TYPE = -DCYGWIN
-CFLAGS = $(OPT) -Wall -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE)
+CFLAGS = $(OPT) -Wall -Wno-pointer-sign -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE)
else
OS_TYPE =
-CFLAGS = $(OPT) -Wall -I../common $(PACKETDEF) $(OS_TYPE)
+CFLAGS = $(OPT) -Wall -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE)
endif
MKDEF = CC="$(CC)" CFLAGS="$(CFLAGS)"