Chris Lattner | 7a51313 | 2008-03-15 23:59:48 +0000 | [diff] [blame] | 1 | ##===- clang/lib/Sema/Makefile -----------------------------*- Makefile -*-===## |
Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 5926c0e | 2007-12-29 20:02:25 +0000 | [diff] [blame] | 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | # |
Chris Lattner | 6ba4ef5 | 2007-05-23 23:56:42 +0000 | [diff] [blame] | 10 | # This implements the semantic analyzer and AST builder library for the |
| 11 | # C-Language front-end. |
Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 12 | # |
| 13 | ##===----------------------------------------------------------------------===## |
| 14 | |
Daniel Dunbar | e6c1daa | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 15 | CLANG_LEVEL := ../.. |
Nico Weber | b092037 | 2008-09-07 17:09:06 +0000 | [diff] [blame] | 16 | LIBRARYNAME := clangSema |
Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 17 | |
Daniel Dunbar | e6c1daa | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 18 | include $(CLANG_LEVEL)/Makefile |
Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 19 | |