blob: c3a8bc1e7fff73d732255afe3767be63f073dc4a (
plain)
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
26
27
|
# $OpenBSD: Makefile,v 1.1 2016/09/05 10:56:49 pascal Exp $
LIB= LLVMSparcDesc
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${.OBJDIR}/../include/llvm/Sparc \
-I${LLVM_SRCS}/lib/Target/Sparc
.include <bsd.own.mk>
SRCS= SparcAsmBackend.cpp \
SparcELFObjectWriter.cpp \
SparcMCAsmInfo.cpp \
SparcMCCodeEmitter.cpp \
SparcMCTargetDesc.cpp \
SparcMCExpr.cpp \
SparcTargetStreamer.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Target/Sparc/MCTargetDesc
depend:
# Nothing here so far ...
install:
# Nothing here so far ...
.include <bsd.lib.mk>
|