diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-03 18:53:17 +0000 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2011-11-14 09:11:44 -0800 |
commit | 00ade8bab0045bde35b13d2489021b8642aeb0cc (patch) | |
tree | 6c03bd601188bc0060513af31062aa2d01dfde8b /lib/Bitcode | |
parent | 24aede70f34558f9daf85f67a52c6420c5abeb64 (diff) | |
download | external_llvm-00ade8bab0045bde35b13d2489021b8642aeb0cc.zip external_llvm-00ade8bab0045bde35b13d2489021b8642aeb0cc.tar.gz external_llvm-00ade8bab0045bde35b13d2489021b8642aeb0cc.tar.bz2 |
build: Add initial cut at LLVMBuild.txt files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r-- | lib/Bitcode/LLVMBuild.txt | 22 | ||||
-rw-r--r-- | lib/Bitcode/Reader/LLVMBuild.txt | 23 | ||||
-rw-r--r-- | lib/Bitcode/Writer/LLVMBuild.txt | 23 |
3 files changed, 68 insertions, 0 deletions
diff --git a/lib/Bitcode/LLVMBuild.txt b/lib/Bitcode/LLVMBuild.txt new file mode 100644 index 0000000..696440d --- /dev/null +++ b/lib/Bitcode/LLVMBuild.txt @@ -0,0 +1,22 @@ +;===- ./lib/Bitcode/LLVMBuild.txt ------------------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Group +name = Bitcode +parent = Libraries + diff --git a/lib/Bitcode/Reader/LLVMBuild.txt b/lib/Bitcode/Reader/LLVMBuild.txt new file mode 100644 index 0000000..948b335 --- /dev/null +++ b/lib/Bitcode/Reader/LLVMBuild.txt @@ -0,0 +1,23 @@ +;===- ./lib/Bitcode/Reader/LLVMBuild.txt -----------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = BitReader +parent = Bitcode +required_libraries = Core Support + diff --git a/lib/Bitcode/Writer/LLVMBuild.txt b/lib/Bitcode/Writer/LLVMBuild.txt new file mode 100644 index 0000000..39ff04e --- /dev/null +++ b/lib/Bitcode/Writer/LLVMBuild.txt @@ -0,0 +1,23 @@ +;===- ./lib/Bitcode/Writer/LLVMBuild.txt -----------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = BitWriter +parent = Bitcode +required_libraries = Core Support + |