diff options
Diffstat (limited to 'lib/clang/libclangcodegen')
-rw-r--r-- | lib/clang/libclangcodegen/Makefile | 51 |
1 files changed, 42 insertions, 9 deletions
diff --git a/lib/clang/libclangcodegen/Makefile b/lib/clang/libclangcodegen/Makefile index 0b9e2f5..82e423b 100644 --- a/lib/clang/libclangcodegen/Makefile +++ b/lib/clang/libclangcodegen/Makefile @@ -3,15 +3,48 @@ LIB= clangcodegen SRCDIR= tools/clang/lib/CodeGen -SRCS= CGBlocks.cpp CGBuiltin.cpp CGCXX.cpp CGCall.cpp CGClass.cpp \ - CGDebugInfo.cpp CGDecl.cpp CGDeclCXX.cpp CGException.cpp \ - CGExpr.cpp CGExprAgg.cpp CGExprCXX.cpp CGExprComplex.cpp \ - CGExprConstant.cpp CGExprScalar.cpp CGObjC.cpp CGObjCGNU.cpp \ - CGObjCMac.cpp CGRTTI.cpp CGRecordLayoutBuilder.cpp CGStmt.cpp \ - CGTemporaries.cpp CGVTT.cpp CGVTables.cpp CodeGenFunction.cpp \ - CodeGenModule.cpp CodeGenTypes.cpp ItaniumCXXABI.cpp \ - Mangle.cpp ModuleBuilder.cpp TargetInfo.cpp +SRCS= BackendUtil.cpp \ + CGBlocks.cpp \ + CGBuiltin.cpp \ + CGCXX.cpp \ + CGCall.cpp \ + CGClass.cpp \ + CGDebugInfo.cpp \ + CGDecl.cpp \ + CGDeclCXX.cpp \ + CGException.cpp \ + CGExpr.cpp \ + CGExprAgg.cpp \ + CGExprCXX.cpp \ + CGExprComplex.cpp \ + CGExprConstant.cpp \ + CGExprScalar.cpp \ + CGObjC.cpp \ + CGObjCGNU.cpp \ + CGObjCMac.cpp \ + CGRTTI.cpp \ + CGRecordLayoutBuilder.cpp \ + CGStmt.cpp \ + CGTemporaries.cpp \ + CGVTT.cpp \ + CGVTables.cpp \ + CodeGenAction.cpp \ + CodeGenFunction.cpp \ + CodeGenModule.cpp \ + CodeGenTypes.cpp \ + ItaniumCXXABI.cpp \ + Mangle.cpp \ + MicrosoftCXXABI.cpp \ + ModuleBuilder.cpp \ + TargetInfo.cpp -TGHDRS= DiagnosticCommonKinds Intrinsics StmtNodes +TGHDRS= Attrs \ + AttrList \ + DeclNodes \ + DiagnosticCommonKinds \ + DiagnosticFrontendKinds \ + Intrinsics \ + StmtNodes \ + arm_neon .include "../clang.lib.mk" |