Home | History | Annotate | Line # | Download | only in libLLVMObjectYAML
Makefile revision 1.1
      1  1.1  joerg #	$NetBSD: Makefile,v 1.1 2019/11/11 22:45:10 joerg Exp $
      2  1.1  joerg 
      3  1.1  joerg LIB=	LLVMObjectYAML
      4  1.1  joerg 
      5  1.1  joerg .include <bsd.init.mk>
      6  1.1  joerg 
      7  1.1  joerg .PATH: ${LLVM_SRCDIR}/lib/ObjectYAML
      8  1.1  joerg 
      9  1.1  joerg SRCS+=	CodeViewYAMLDebugSections.cpp \
     10  1.1  joerg 	CodeViewYAMLSymbols.cpp \
     11  1.1  joerg 	CodeViewYAMLTypeHashing.cpp \
     12  1.1  joerg 	CodeViewYAMLTypes.cpp \
     13  1.1  joerg 	COFFEmitter.cpp \
     14  1.1  joerg 	COFFYAML.cpp \
     15  1.1  joerg 	DWARFEmitter.cpp \
     16  1.1  joerg 	DWARFVisitor.cpp \
     17  1.1  joerg 	DWARFYAML.cpp \
     18  1.1  joerg 	ELFEmitter.cpp \
     19  1.1  joerg 	ELFYAML.cpp \
     20  1.1  joerg 	MachOEmitter.cpp \
     21  1.1  joerg 	MachOYAML.cpp \
     22  1.1  joerg 	MinidumpEmitter.cpp \
     23  1.1  joerg 	MinidumpYAML.cpp \
     24  1.1  joerg 	ObjectYAML.cpp \
     25  1.1  joerg 	WasmEmitter.cpp \
     26  1.1  joerg 	WasmYAML.cpp \
     27  1.1  joerg 	XCOFFYAML.cpp \
     28  1.1  joerg 	yaml2obj.cpp \
     29  1.1  joerg 	YAML.cpp
     30  1.1  joerg 
     31  1.1  joerg .if defined(HOSTLIB)
     32  1.1  joerg .include <bsd.hostlib.mk>
     33  1.1  joerg .else
     34  1.1  joerg .include <bsd.lib.mk>
     35  1.1  joerg .endif
     36