| 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 | |
| Chris Lattner | 7a51313 | 2008-03-15 23:59:48 +0000 | [diff] [blame^] | 15 | LEVEL = ../../../.. |
| Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 16 | LIBRARYNAME := clangSEMA |
| 17 | BUILD_ARCHIVE = 1 |
| 18 | CXXFLAGS = -fno-rtti |
| 19 | |
| Chris Lattner | 7a51313 | 2008-03-15 23:59:48 +0000 | [diff] [blame^] | 20 | CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include |
| Steve Naroff | 21d5e87 | 2007-05-22 17:43:50 +0000 | [diff] [blame] | 21 | |
| 22 | include $(LEVEL)/Makefile.common |
| 23 | |