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