This commit merges the latest LLVM sources from the vendor space. It also updates the build glue to match the new sources. Clang's version number is changed to match LLVM's, which means /usr/include/clang/2.0 has been renamed to /usr/include/clang/2.8. Obtained from: projects/clangbsd
30 lines
516 B
Makefile
30 lines
516 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clanglex
|
|
|
|
SRCDIR= tools/clang/lib/Lex
|
|
SRCS= HeaderMap.cpp \
|
|
HeaderSearch.cpp \
|
|
Lexer.cpp \
|
|
LiteralSupport.cpp \
|
|
MacroArgs.cpp \
|
|
MacroInfo.cpp \
|
|
PPCaching.cpp \
|
|
PPDirectives.cpp \
|
|
PPExpressions.cpp \
|
|
PPLexerChange.cpp \
|
|
PPMacroExpansion.cpp \
|
|
PTHLexer.cpp \
|
|
Pragma.cpp \
|
|
PreprocessingRecord.cpp \
|
|
Preprocessor.cpp \
|
|
PreprocessorLexer.cpp \
|
|
ScratchBuffer.cpp \
|
|
TokenConcatenation.cpp \
|
|
TokenLexer.cpp
|
|
|
|
TGHDRS= DiagnosticCommonKinds \
|
|
DiagnosticLexKinds
|
|
|
|
.include "../clang.lib.mk"
|