blob: 7dee711378b11d9e7f3d1eb03fc4462df51dc8c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.2 2017/07/09 15:28:34 espie Exp $
LIB= LLVMAArch64AsmParser
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${.OBJDIR}/../include/llvm/AArch64 \
-I${LLVM_SRCS}/lib/Target/AArch64
.include <bsd.own.mk>
SRCS= AArch64AsmParser.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Target/AArch64/AsmParser
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|