aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-04-14 12:27:16 +1000
committernyamatongwe <devnull@localhost>2013-04-14 12:27:16 +1000
commit8ddd3dbe738dc12e7d9fe4d21fadd0117ffa11ba (patch)
treeaf04e0a230a572edbe326d9adf7a8ed98110daca
parent8a08a157cd14535ae1bae2d8d5d50c2ba9bd1f54 (diff)
downloadscintilla-mirror-8ddd3dbe738dc12e7d9fe4d21fadd0117ffa11ba.tar.gz
Add analyze target for clang --analyze.
-rw-r--r--win32/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile
index c71997c65..1e275d972 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -34,7 +34,10 @@ endif
ALL: $(COMPONENT) $(LEXCOMPONENT) $(LEXLIB) ScintillaWinS.o
clean:
- $(DEL) *.exe *.o *.obj *.dll *.res *.map
+ $(DEL) *.exe *.o *.obj *.dll *.res *.map *.plist
+
+analyze:
+ clang --analyze -D DISABLE_D2D $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx
deps:
$(CC) -MM $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx >deps.mak