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