Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | ##===- clang/Basic/Makefile --------------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 6298b8c | 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. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | # |
| 10 | # This implements the Basic library for the C-Language front-end. |
| 11 | # |
| 12 | ##===----------------------------------------------------------------------===## |
| 13 | |
| 14 | LEVEL = ../../.. |
| 15 | LIBRARYNAME := clangBasic |
| 16 | BUILD_ARCHIVE = 1 |
| 17 | CXXFLAGS = -fno-rtti |
| 18 | |
| 19 | CPPFLAGS += -I$(PROJ_SRC_DIR)/../include |
| 20 | |
| 21 | include $(LEVEL)/Makefile.common |
| 22 | |