1# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:51 joerg Exp $ 2 3LIB= LLVMDebugInfoDWARF 4 5.include <bsd.init.mk> 6 7.PATH: ${LLVM_SRCDIR}/lib/DebugInfo/DWARF 8 9SRCS+= DWARFAbbreviationDeclaration.cpp \ 10 DWARFAcceleratorTable.cpp \ 11 DWARFAddressRange.cpp \ 12 DWARFCompileUnit.cpp \ 13 DWARFContext.cpp \ 14 DWARFDataExtractor.cpp \ 15 DWARFDebugAbbrev.cpp \ 16 DWARFDebugAddr.cpp \ 17 DWARFDebugAranges.cpp \ 18 DWARFDebugArangeSet.cpp \ 19 DWARFDebugFrame.cpp \ 20 DWARFDebugInfoEntry.cpp \ 21 DWARFDebugLine.cpp \ 22 DWARFDebugLoc.cpp \ 23 DWARFDebugMacro.cpp \ 24 DWARFDebugPubTable.cpp \ 25 DWARFDebugRangeList.cpp \ 26 DWARFDebugRnglists.cpp \ 27 DWARFDie.cpp \ 28 DWARFExpression.cpp \ 29 DWARFFormValue.cpp \ 30 DWARFGdbIndex.cpp \ 31 DWARFListTable.cpp \ 32 DWARFLocationExpression.cpp \ 33 DWARFTypeUnit.cpp \ 34 DWARFUnit.cpp \ 35 DWARFUnitIndex.cpp \ 36 DWARFVerifier.cpp 37 38.if defined(HOSTLIB) 39.include <bsd.hostlib.mk> 40.else 41.include <bsd.lib.mk> 42.endif 43