blob: cef4f203791b9bec2d9c9fe743c71c0f13a5cc7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.1 2016/09/05 10:56:49 pascal Exp $
LIB= LLVMBitWriter
NOPIC=
NOPROFILE=
.include <bsd.own.mk>
SRCS= BitWriter.cpp \
BitcodeWriter.cpp \
BitcodeWriterPass.cpp \
ValueEnumerator.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Bitcode/Writer
depend:
# Nothing here so far ...
install:
# Nothing here so far ...
.include <bsd.lib.mk>
|