summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-04-24 08:34:52 -0600
committerJared Adams <jaxad0127@gmail.com>2009-04-24 08:34:52 -0600
commit1b83fe68a58fc7d19ed8557e2b363290732d4231 (patch)
treecfdf5a7ab7721a2a3bc7646d80e7793a89166cb0 /Makefile
parentf3a49f36d367b7b67152b0e67526768881dd47fd (diff)
downloadtmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.tar.gz
tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.tar.bz2
tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.tar.xz
tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.zip
Remove a recent flag addition from cygwin builds
It seems that the compiler included with cygwin doesn't like the -Wno-pointer-sign flag.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 926228b..08e54f4 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ OPT = -g -O2 ${M32}
ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN)
OS_TYPE = -DCYGWIN
-CFLAGS = $(OPT) -Wall -Wno-pointer-sign -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 -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE)