Add library LLVMsystem.a because the JIT now needs it.

llvm-svn: 16285
diff --git a/llvm/examples/Fibonacci/Makefile b/llvm/examples/Fibonacci/Makefile
index bc5fd0f..60392e2 100644
--- a/llvm/examples/Fibonacci/Makefile
+++ b/llvm/examples/Fibonacci/Makefile
@@ -1,4 +1,4 @@
-##===- projects/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
+##===- projects/Fibonacci/Makefile -------------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
@@ -10,6 +10,6 @@
 TOOLNAME = Fibonacci
 USEDLIBS = lli-jit lli-interpreter codegen executionengine x86 selectiondag \
 	   scalaropts analysis.a transformutils.a bcreader target.a vmcore \
-	   support.a
+	   support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/HowToUseJIT/Makefile b/llvm/examples/HowToUseJIT/Makefile
index 834ad02..9e42223 100644
--- a/llvm/examples/HowToUseJIT/Makefile
+++ b/llvm/examples/HowToUseJIT/Makefile
@@ -10,6 +10,6 @@
 TOOLNAME = HowToUseJIT
 USEDLIBS = lli-jit lli-interpreter codegen executionengine x86 selectiondag \
 	   scalaropts analysis.a transformutils.a bcreader target.a vmcore \
-	   support.a
+	   support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/ModuleMaker/Makefile b/llvm/examples/ModuleMaker/Makefile
index de7a0a5..4ae28cc 100644
--- a/llvm/examples/ModuleMaker/Makefile
+++ b/llvm/examples/ModuleMaker/Makefile
@@ -8,6 +8,6 @@
 ##===----------------------------------------------------------------------===##
 LEVEL=../..
 TOOLNAME=ModuleMaker
-USEDLIBS= bcwriter vmcore support.a
+USEDLIBS= bcwriter vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common