diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-22 06:26:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-22 06:26:05 +0000 |
commit | 20571d9c354250d0d1ffcccfb79facf45e74d26d (patch) | |
tree | 29b9d0471acae0353745d58c8907dffeb742da09 /llvm/lib | |
parent | c1d10d67a1b6f27b242208ebb09de1b9b35801b8 (diff) | |
download | bcm5719-llvm-20571d9c354250d0d1ffcccfb79facf45e74d26d.tar.gz bcm5719-llvm-20571d9c354250d0d1ffcccfb79facf45e74d26d.zip |
build the bitcode dir
llvm-svn: 36332
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Bitcode/Makefile | 14 | ||||
-rw-r--r-- | llvm/lib/Makefile | 4 |
2 files changed, 16 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Makefile b/llvm/lib/Bitcode/Makefile new file mode 100644 index 00000000000..1e4ab1b7821 --- /dev/null +++ b/llvm/lib/Bitcode/Makefile @@ -0,0 +1,14 @@ +##===- lib/Bitcode/Makefile --------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by Chris Lattner and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../.. +PARALLEL_DIRS = Reader Writer + +include $(LEVEL)/Makefile.common + diff --git a/llvm/lib/Makefile b/llvm/lib/Makefile index 2440dd48068..26f98caf3bd 100644 --- a/llvm/lib/Makefile +++ b/llvm/lib/Makefile @@ -8,8 +8,8 @@ ##===----------------------------------------------------------------------===## LEVEL = .. -PARALLEL_DIRS = VMCore AsmParser Bytecode Analysis Transforms CodeGen Target \ - ExecutionEngine Debugger Linker +PARALLEL_DIRS = VMCore AsmParser Bytecode Bitcode Analysis Transforms CodeGen \ + Target ExecutionEngine Debugger Linker include $(LEVEL)/Makefile.common |