blob: af98648f14ee958a75f99cf5870be1391c568c1c (
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
25
|
# $OpenBSD: Makefile,v 1.1 2020/08/03 14:45:28 patrick Exp $
LIB= LLVMTextAPI
NOPROFILE=
SRCS+= ELFStub.cpp \
TBEHandler.cpp \
Architecture.cpp \
ArchitectureSet.cpp \
InterfaceFile.cpp \
PackedVersion.cpp \
Platform.cpp \
Symbol.cpp \
TextAPITarget.cpp \
TextStub.cpp \
TextStubCommon.cpp
TextAPITarget.cpp:
ln -s ${LLVM_SRCS}/lib/TextAPI/MachO/Target.cpp $@
.PATH: ${.CURDIR}/../../../llvm/llvm/lib/TextAPI
.PATH: ${.CURDIR}/../../../llvm/llvm/lib/TextAPI/ELF
.PATH: ${.CURDIR}/../../../llvm/llvm/lib/TextAPI/MachO
CLEANFILES+= TextAPITarget.cpp
|