aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-07 12:14:52 +0000
committernyamatongwe <devnull@localhost>2000-04-07 12:14:52 +0000
commitfb50301368a095e6cbd6d20220431ea8c8ae2cbc (patch)
tree51f5b2a345cab9af83bf566a47900b18fe305295 /win32/makefile
parent9785733416ef26d325802b81692f6fdc3506be55 (diff)
downloadscintilla-mirror-fb50301368a095e6cbd6d20220431ea8c8ae2cbc.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 $@