diff options
Diffstat (limited to 'lib/clang/libclangcodegen/Makefile')
-rw-r--r-- | lib/clang/libclangcodegen/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/clang/libclangcodegen/Makefile b/lib/clang/libclangcodegen/Makefile new file mode 100644 index 0000000..80f203a --- /dev/null +++ b/lib/clang/libclangcodegen/Makefile @@ -0,0 +1,50 @@ +# $FreeBSD$ + +LIB= clangcodegen + +SRCDIR= tools/clang/lib/CodeGen +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= AttrList \ + Attrs \ + DeclNodes \ + DiagnosticCommonKinds \ + DiagnosticFrontendKinds \ + Intrinsics \ + StmtNodes \ + arm_neon + +.include "../clang.lib.mk" |