Makefile revision 44da821078a5f09127a01f9aa01dd9dd9af9de86
1##===- clang/lib/Driver/Makefile ---------------------------*- Makefile -*-===##
2# 
3#                     The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7# 
8##===----------------------------------------------------------------------===##
9
10LEVEL = ../../../..
11LIBRARYNAME := clangDriver
12BUILD_ARCHIVE = 1
13CXXFLAGS = -fno-rtti
14OS_MAJOR := -DOS_MAJOR=$(shell uname -r | sed 's/\..*//')
15# Don't install Clang libraries
16NO_INSTALL = 1
17
18CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include $(OS_MAJOR)
19
20include $(LEVEL)/Makefile.common
21