aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-07 12:14:52 +0000
committernyamatongwe <unknown>2000-04-07 12:14:52 +0000
commit8b68892120dcfd53befc0dc8e8e16353af711a11 (patch)
tree51f5b2a345cab9af83bf566a47900b18fe305295 /win32/makefile
parent2b655a29a4e4d7e343884b85742aed8a033b6eef (diff)
downloadscintilla-mirror-8b68892120dcfd53befc0dc8e8e16353af711a11.tar.gz
Changing code to ensure no warnings are produced by compilers.
Diffstat (limited to 'win32/makefile')
-rw-r--r--win32/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile
index 2fc51baae..a55c08ea8 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -19,7 +19,7 @@ LDFLAGS = -lkernel32 -lgdi32 -luser32 -lwinmm -lcomdlg32 -lcomctl32 -limm32 -lol
# Add -MMD to get dependencies
#CXXFLAGS = -g -pg -pedantic -Os -fno-exceptions -fvtable-thunks -fno-rtti
INCLUDEDIRS=-I ../include -I ../src
-CXXFLAGS = -pedantic $(INCLUDEDIRS) -Os -fno-exceptions -fvtable-thunks -fno-rtti
+CXXFLAGS = -W -Wall -pedantic $(INCLUDEDIRS) -Os -fno-exceptions -fvtable-thunks -fno-rtti
.cxx.o:
$(CC) $(CXXFLAGS) -c $< -o $@