diff options
-rw-r--r-- | llvm/lib/DebugInfo/Makefile | 2 | ||||
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Makefile | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/Makefile b/llvm/lib/DebugInfo/Makefile index 9b4cb23690d..27a5e1f0f49 100644 --- a/llvm/lib/DebugInfo/Makefile +++ b/llvm/lib/DebugInfo/Makefile @@ -10,6 +10,6 @@ LEVEL = ../.. include $(LEVEL)/Makefile.config -PARALLEL_DIRS := DWARF +PARALLEL_DIRS := DWARF PDB include $(LEVEL)/Makefile.common
\ No newline at end of file diff --git a/llvm/lib/DebugInfo/PDB/Makefile b/llvm/lib/DebugInfo/PDB/Makefile new file mode 100644 index 00000000000..444019e5a18 --- /dev/null +++ b/llvm/lib/DebugInfo/PDB/Makefile @@ -0,0 +1,14 @@ +##===- lib/DebugInfo/PDB/Makefile --------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../../.. +LIBRARYNAME = LLVMDebugInfoPDB +BUILD_ARCHIVE := 1 + +include $(LEVEL)/Makefile.common |