blob: d1fb08d1af59e5acaa012a0f5422eac7fbf6c55b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:05 joerg Exp $
LIB= LLVMBitstreamReader
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Bitstream/Reader
SRCS+= BitstreamReader.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|