diff options
Diffstat (limited to 'clang/lib/StaticAnalyzer/Makefile')
-rw-r--r-- | clang/lib/StaticAnalyzer/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Makefile b/clang/lib/StaticAnalyzer/Makefile new file mode 100644 index 00000000000..08ace28e35c --- /dev/null +++ b/clang/lib/StaticAnalyzer/Makefile @@ -0,0 +1,19 @@ +##===- clang/lib/Checker/Makefile --------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +# +# This implements analyses built on top of source-level CFGs. +# +##===----------------------------------------------------------------------===## + +CLANG_LEVEL := ../.. +LIBRARYNAME := clangStaticAnalyzerCore +PARALLEL_DIRS := Checkers + +include $(CLANG_LEVEL)/Makefile + |