blob: 509077017c2d9e1d0b44e0c268931ab7dd876f49 [file] [log] [blame]
Chris Lattnerbda0b622008-03-15 23:59:48 +00001##===- clang/lib/Lex/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 Lexer library for the C-Language front-end.
11#
12##===----------------------------------------------------------------------===##
13
Chris Lattnerbda0b622008-03-15 23:59:48 +000014LEVEL = ../../../..
Reid Spencer5f016e22007-07-11 17:01:13 +000015include $(LEVEL)/Makefile.config
16
17LIBRARYNAME := clangLex
18BUILD_ARCHIVE = 1
Reid Spencer5f016e22007-07-11 17:01:13 +000019
20ifeq ($(ARCH),PowerPC)
21CXXFLAGS += -maltivec
22endif
23
Douglas Gregora393e9e2009-03-16 23:06:59 +000024CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
Reid Spencer5f016e22007-07-11 17:01:13 +000025
26include $(LEVEL)/Makefile.common
27