diff options
Diffstat (limited to 'contrib/llvm/tools/clang/lib/Makefile')
-rwxr-xr-x | contrib/llvm/tools/clang/lib/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/llvm/tools/clang/lib/Makefile b/contrib/llvm/tools/clang/lib/Makefile new file mode 100755 index 0000000..dbd0eb6 --- /dev/null +++ b/contrib/llvm/tools/clang/lib/Makefile @@ -0,0 +1,15 @@ +##===- lib/Makefile ----------------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +CLANG_LEVEL := .. + +PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis \ + Checker Rewrite Serialization Frontend FrontendTool Index Driver + +include $(CLANG_LEVEL)/Makefile + |