1 1.2 joerg # $NetBSD: Makefile,v 1.2 2021/05/30 01:56:56 joerg Exp $ 2 1.1 joerg 3 1.1 joerg LIB= clangCodeGen 4 1.1 joerg 5 1.1 joerg .include <bsd.init.mk> 6 1.1 joerg 7 1.1 joerg .PATH: ${CLANG_SRCDIR}/lib/CodeGen 8 1.1 joerg 9 1.1 joerg SRCS+= BackendUtil.cpp \ 10 1.1 joerg CGAtomic.cpp \ 11 1.1 joerg CGBlocks.cpp \ 12 1.1 joerg CGBuiltin.cpp \ 13 1.1 joerg CGCall.cpp \ 14 1.1 joerg CGClass.cpp \ 15 1.1 joerg CGCleanup.cpp \ 16 1.1 joerg CGCoroutine.cpp \ 17 1.2 joerg CGCUDANV.cpp \ 18 1.2 joerg CGCUDARuntime.cpp \ 19 1.2 joerg CGCXXABI.cpp \ 20 1.2 joerg CGCXX.cpp \ 21 1.1 joerg CGDebugInfo.cpp \ 22 1.1 joerg CGDecl.cpp \ 23 1.1 joerg CGDeclCXX.cpp \ 24 1.1 joerg CGException.cpp \ 25 1.1 joerg CGExprAgg.cpp \ 26 1.1 joerg CGExprComplex.cpp \ 27 1.1 joerg CGExprConstant.cpp \ 28 1.2 joerg CGExpr.cpp \ 29 1.1 joerg CGExprCXX.cpp \ 30 1.1 joerg CGExprScalar.cpp \ 31 1.1 joerg CGGPUBuiltin.cpp \ 32 1.1 joerg CGLoopInfo.cpp \ 33 1.1 joerg CGNonTrivialStruct.cpp \ 34 1.1 joerg CGObjC.cpp \ 35 1.1 joerg CGObjCGNU.cpp \ 36 1.1 joerg CGObjCMac.cpp \ 37 1.1 joerg CGObjCRuntime.cpp \ 38 1.1 joerg CGOpenCLRuntime.cpp \ 39 1.2 joerg CGOpenMPRuntimeAMDGCN.cpp \ 40 1.1 joerg CGOpenMPRuntime.cpp \ 41 1.2 joerg CGOpenMPRuntimeGPU.cpp \ 42 1.1 joerg CGOpenMPRuntimeNVPTX.cpp \ 43 1.1 joerg CGRecordLayoutBuilder.cpp \ 44 1.1 joerg CGStmt.cpp \ 45 1.1 joerg CGStmtOpenMP.cpp \ 46 1.1 joerg CGVTables.cpp \ 47 1.1 joerg CGVTT.cpp \ 48 1.1 joerg CodeGenABITypes.cpp \ 49 1.1 joerg CodeGenAction.cpp \ 50 1.1 joerg CodeGenFunction.cpp \ 51 1.1 joerg CodeGenModule.cpp \ 52 1.1 joerg CodeGenPGO.cpp \ 53 1.1 joerg CodeGenTBAA.cpp \ 54 1.1 joerg CodeGenTypes.cpp \ 55 1.1 joerg ConstantInitBuilder.cpp \ 56 1.1 joerg CoverageMappingGen.cpp \ 57 1.1 joerg ItaniumCXXABI.cpp \ 58 1.1 joerg MacroPPCallbacks.cpp \ 59 1.1 joerg MicrosoftCXXABI.cpp \ 60 1.1 joerg ModuleBuilder.cpp \ 61 1.1 joerg ObjectFilePCHContainerOperations.cpp \ 62 1.1 joerg PatternInit.cpp \ 63 1.1 joerg SanitizerMetadata.cpp \ 64 1.1 joerg SwiftCallingConv.cpp \ 65 1.1 joerg TargetInfo.cpp \ 66 1.1 joerg VarBypassDetector.cpp 67 1.1 joerg 68 1.1 joerg .if defined(HOSTLIB) 69 1.1 joerg .include <bsd.hostlib.mk> 70 1.1 joerg .else 71 1.1 joerg .include <bsd.lib.mk> 72 1.1 joerg .endif 73