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