blob: 3c67f0880151d72cffb1b647cc88b36b434f78ef [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001##===- clang/Lex/Makefile ----------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattnerbd599602007-12-29 20:02:25 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007#
8##===----------------------------------------------------------------------===##
9#
10# This implements the Lexer library for the C-Language front-end.
11#
12##===----------------------------------------------------------------------===##
13
14LEVEL = ../../..
15include $(LEVEL)/Makefile.config
16
17LIBRARYNAME := clangLex
18BUILD_ARCHIVE = 1
19CXXFLAGS = -fno-rtti
20
21ifeq ($(ARCH),PowerPC)
22CXXFLAGS += -maltivec
23endif
24
25CPPFLAGS += -I$(PROJ_SRC_DIR)/../include
26
27include $(LEVEL)/Makefile.common
28