summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/clang/libLLVMDebugInfoCodeView/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/clang/libLLVMDebugInfoCodeView/Makefile')
-rw-r--r--gnu/usr.bin/clang/libLLVMDebugInfoCodeView/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/usr.bin/clang/libLLVMDebugInfoCodeView/Makefile b/gnu/usr.bin/clang/libLLVMDebugInfoCodeView/Makefile
new file mode 100644
index 00000000000..f377514624d
--- /dev/null
+++ b/gnu/usr.bin/clang/libLLVMDebugInfoCodeView/Makefile
@@ -0,0 +1,37 @@
+# $OpenBSD: Makefile,v 1.1 2017/01/14 20:12:41 patrick Exp $
+
+LIB= LLVMDebugInfoCodeView
+NOPIC=
+NOPROFILE=
+
+CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/DebugInfo/CodeView
+
+.include <bsd.own.mk>
+SRCS= ByteStream.cpp \
+ CVTypeVisitor.cpp \
+ CodeViewError.cpp \
+ FieldListRecordBuilder.cpp \
+ Line.cpp \
+ ListRecordBuilder.cpp \
+ MemoryTypeTableBuilder.cpp \
+ ModuleSubstream.cpp \
+ ModuleSubstreamVisitor.cpp \
+ RecordSerialization.cpp \
+ StreamReader.cpp \
+ StreamWriter.cpp \
+ SymbolDumper.cpp \
+ TypeDumper.cpp \
+ TypeRecord.cpp \
+ TypeRecordBuilder.cpp \
+ TypeStreamMerger.cpp \
+ TypeTableBuilder.cpp
+
+.PATH: ${.CURDIR}/../../../llvm/lib/DebugInfo/CodeView
+
+depend:
+ # Nothing here so far ...
+
+install:
+ # Nothing here so far ...
+
+.include <bsd.lib.mk>