1# $OpenBSD: Makefile,v 1.2 2017/01/24 08:44:47 patrick Exp $ 2 3LIB= LLVMBitReader 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Bitcode 8 9.include <bsd.own.mk> 10SRCS= BitReader.cpp \ 11 BitcodeReader.cpp \ 12 BitstreamReader.cpp \ 13 MetadataLoader.cpp \ 14 ValueList.cpp 15 16.PATH: ${.CURDIR}/../../../llvm/lib/Bitcode/Reader 17 18depend: 19 # Nothing here so far ... 20 21install: 22 # Nothing here so far ... 23 24.include <bsd.lib.mk> 25