diff options
author | nyamatongwe <unknown> | 2013-04-14 12:27:16 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-04-14 12:27:16 +1000 |
commit | 627c9b20e4e59fc503081defe219c0756d932fe8 (patch) | |
tree | eed2a95381eb6ff9ebfafcf98036fd83b66827be | |
parent | f4d6add0d2940256f31a30411d7c709d5331f3c8 (diff) | |
download | scintilla-mirror-627c9b20e4e59fc503081defe219c0756d932fe8.tar.gz |
Add analyze target for clang --analyze.
-rw-r--r-- | win32/makefile | 5 |
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 |