blob: cc3b5041a72d7ffa9d9377b05b27d67ee9f2459d [file] [log] [blame]
Chris Lattnerbda0b622008-03-15 23:59:48 +00001##===- clang/lib/CodeGen/Makefile --------------------------*- Makefile -*-===##
Reid Spencer5f016e22007-07-11 17:01:13 +00002#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner6298b8c2007-12-29 20:02:25 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007#
8##===----------------------------------------------------------------------===##
9#
10# This implements the AST -> LLVM code generation library for the
11# C-Language front-end.
12#
13##===----------------------------------------------------------------------===##
14
Chris Lattnerbda0b622008-03-15 23:59:48 +000015LEVEL = ../../../..
Reid Spencer5f016e22007-07-11 17:01:13 +000016LIBRARYNAME := clangCodeGen
17BUILD_ARCHIVE = 1
18CXXFLAGS = -fno-rtti
19
Douglas Gregor7ebe9712009-08-23 05:02:18 +000020# Don't install Clang libraries
21NO_INSTALL = 1
22
Douglas Gregora393e9e2009-03-16 23:06:59 +000023CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
Reid Spencer5f016e22007-07-11 17:01:13 +000024
25include $(LEVEL)/Makefile.common
26