blob: 38eeec0f6f928e3e49b9361585732249823b4cec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:16 joerg Exp $
LIB= clangLex
.include <bsd.init.mk>
.PATH: ${CLANG_SRCDIR}/lib/Lex
SRCS+= DependencyDirectivesSourceMinimizer.cpp \
HeaderMap.cpp \
HeaderSearch.cpp \
Lexer.cpp \
LiteralSupport.cpp \
MacroArgs.cpp \
MacroInfo.cpp \
ModuleMap.cpp \
PPCaching.cpp \
PPCallbacks.cpp \
PPConditionalDirectiveRecord.cpp \
PPDirectives.cpp \
PPExpressions.cpp \
PPLexerChange.cpp \
PPMacroExpansion.cpp \
Pragma.cpp \
PreprocessingRecord.cpp \
Preprocessor.cpp \
PreprocessorLexer.cpp \
ScratchBuffer.cpp \
TokenConcatenation.cpp \
TokenLexer.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|