Home | History | Annotate | Line # | Download | only in libLLVMDebugInfoCodeView
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2019/11/11 22:45:05 joerg Exp $
      2 
      3 LIB=	LLVMDebugInfoCodeView
      4 
      5 .include <bsd.init.mk>
      6 
      7 .PATH: ${LLVM_SRCDIR}/lib/DebugInfo/CodeView
      8 
      9 SRCS+=	AppendingTypeTableBuilder.cpp \
     10 	CodeViewError.cpp \
     11 	CodeViewRecordIO.cpp \
     12 	ContinuationRecordBuilder.cpp \
     13 	CVSymbolVisitor.cpp \
     14 	CVTypeVisitor.cpp \
     15 	DebugChecksumsSubsection.cpp \
     16 	DebugCrossExSubsection.cpp \
     17 	DebugCrossImpSubsection.cpp \
     18 	DebugFrameDataSubsection.cpp \
     19 	DebugInlineeLinesSubsection.cpp \
     20 	DebugLinesSubsection.cpp \
     21 	DebugStringTableSubsection.cpp \
     22 	DebugSubsection.cpp \
     23 	DebugSubsectionRecord.cpp \
     24 	DebugSubsectionVisitor.cpp \
     25 	DebugSymbolsSubsection.cpp \
     26 	EnumTables.cpp \
     27 	Formatters.cpp \
     28 	GlobalTypeTableBuilder.cpp \
     29 	LazyRandomTypeCollection.cpp \
     30 	Line.cpp \
     31 	MergingTypeTableBuilder.cpp \
     32 	RecordName.cpp \
     33 	RecordSerialization.cpp \
     34 	SimpleTypeSerializer.cpp \
     35 	StringsAndChecksums.cpp \
     36 	SymbolDumper.cpp \
     37 	SymbolRecordHelpers.cpp \
     38 	SymbolRecordMapping.cpp \
     39 	SymbolSerializer.cpp \
     40 	TypeDumpVisitor.cpp \
     41 	TypeHashing.cpp \
     42 	TypeIndex.cpp \
     43 	TypeIndexDiscovery.cpp \
     44 	TypeRecordHelpers.cpp \
     45 	TypeRecordMapping.cpp \
     46 	TypeStreamMerger.cpp \
     47 	TypeTableCollection.cpp
     48 
     49 .if defined(HOSTLIB)
     50 .include <bsd.hostlib.mk>
     51 .else
     52 .include <bsd.lib.mk>
     53 .endif
     54