diff options
Diffstat (limited to 'clang/lib/Parse/Makefile')
-rw-r--r-- | clang/lib/Parse/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/lib/Parse/Makefile b/clang/lib/Parse/Makefile new file mode 100644 index 0000000..5ec7c33 --- /dev/null +++ b/clang/lib/Parse/Makefile @@ -0,0 +1,18 @@ +##===- clang/lib/Parse/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 the Parser library for the C-Language front-end. +# +##===----------------------------------------------------------------------===## + +CLANG_LEVEL := ../.. +LIBRARYNAME := clangParse + +include $(CLANG_LEVEL)/Makefile + |