mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-02 12:20:51 +00:00
2754fe609d
This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
31 lines
533 B
Makefile
31 lines
533 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= AttrSpellings \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticLexKinds
|
|
|
|
.include "../clang.lib.mk"
|