1# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:12 joerg Exp $ 2 3LIB= LLVMTextAPI 4 5.include <bsd.init.mk> 6 7.PATH: ${LLVM_SRCDIR}/lib/TextAPI/ELF 8 9SRCS+= ELFStub.cpp \ 10 TBEHandler.cpp 11 12.PATH: ${LLVM_SRCDIR}/lib/TextAPI/MachO 13SRCS+= Architecture.cpp \ 14 ArchitectureSet.cpp \ 15 InterfaceFile.cpp \ 16 PackedVersion.cpp \ 17 Platform.cpp \ 18 Symbol.cpp \ 19 Target.cpp \ 20 TextStub.cpp \ 21 TextStubCommon.cpp 22 23.if defined(HOSTLIB) 24.include <bsd.hostlib.mk> 25.else 26.include <bsd.lib.mk> 27.endif 28