1# $OpenBSD: Makefile,v 1.5 2020/08/03 14:45:25 patrick Exp $ 2 3LIB= LLVMBinaryFormat 4NOPROFILE= 5 6CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/BinaryFormat 7 8SRCS+= AMDGPUMetadataVerifier.cpp \ 9 BinaryFormatMinidump.cpp \ 10 Dwarf.cpp \ 11 Magic.cpp \ 12 MsgPackDocument.cpp \ 13 MsgPackDocumentYAML.cpp \ 14 MsgPackReader.cpp \ 15 MsgPackWriter.cpp \ 16 Wasm.cpp \ 17 XCOFF.cpp 18 19BinaryFormatMinidump.cpp: 20 ln -s ${LLVM_SRCS}/lib/BinaryFormat/Minidump.cpp $@ 21 22.PATH: ${.CURDIR}/../../../llvm/llvm/lib/BinaryFormat 23 24CLEANFILES+= BinaryFormatMinidump.cpp 25