aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-04-04 03:39:08 +0000
committernyamatongwe <devnull@localhost>2001-04-04 03:39:08 +0000
commit55a8331df687b8a0bb2f7b8c814f24df1ad8b198 (patch)
treed7d7e854f1659b0ca6f28f217edcddefda42f04d /win32
parenta1e68d0148853c74ec7f8cb0b10a5f810a0262b5 (diff)
downloadscintilla-mirror-55a8331df687b8a0bb2f7b8c814f24df1ad8b198.tar.gz
Avoid compiler and BoundsChecker warnings.
Diffstat (limited to 'win32')
-rw-r--r--win32/makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile
index b0e5d0609..66691288a 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -58,7 +58,6 @@ CellBuffer.o: CellBuffer.cxx Platform.h Scintilla.h CellBuffer.h
ContractionState.o: ContractionState.cxx Platform.h ContractionState.h
Document.o: Document.cxx Platform.h Scintilla.h PosRegExp.h CellBuffer.h \
Document.h
-PosRegExp.o: PosRegExp.cxx PosRegExp.h
DocumentAccessor.o: DocumentAccessor.cxx Platform.h PropSet.h \
SString.h Accessor.h DocumentAccessor.h Scintilla.h
Editor.o: Editor.cxx Platform.h Scintilla.h ContractionState.h \
@@ -92,6 +91,9 @@ KeyWords.o: KeyWords.cxx Platform.h PropSet.h SString.h Accessor.h KeyWords.h \
Scintilla.h SciLexer.h
LineMarker.o: LineMarker.cxx Platform.h Scintilla.h LineMarker.h
PlatWin.o: PlatWin.cxx Platform.h PlatformRes.h UniConversion.h
+# PosRegExp.cxx is an external library so is not purged of warnings so turn the warnings off with -w.
+PosRegExp.o: PosRegExp.cxx PosRegExp.h
+ $(CC) $(CXXFLAGS) -w -c $< -o $@
PropSet.o: PropSet.cxx Platform.h PropSet.h SString.h
ScintillaBase.o: ScintillaBase.cxx Platform.h Scintilla.h \
ContractionState.h CellBuffer.h CallTip.h KeyMap.h Indicator.h \