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