1# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:54 joerg Exp $ 2 3LIB= LLVMTextAPI 4 5.include <bsd.init.mk> 6 7.PATH: ${LLVM_SRCDIR}/lib/TextAPI 8SRCS+= Architecture.cpp \ 9 ArchitectureSet.cpp \ 10 InterfaceFile.cpp \ 11 PackedVersion.cpp \ 12 Platform.cpp \ 13 Symbol.cpp \ 14 Target.cpp \ 15 TextStub.cpp \ 16 TextStubCommon.cpp 17 18.if defined(HOSTLIB) 19.include <bsd.hostlib.mk> 20.else 21.include <bsd.lib.mk> 22.endif 23