[llvm-commits] CVS: llvm/examples/Fibonacci/Makefile

Misha Brukman brukman at cs.uiuc.edu
Thu Oct 14 12:02:21 PDT 2004



Changes in directory llvm/examples/Fibonacci:

Makefile updated: 1.4 -> 1.5
---
Log message:

Use the shared Makefile.JIT for JIT-enablement, which also enables the examples
to have the JIT functioning on more platforms than just x86


---
Diffs of the changes:  (+4 -3)

Index: llvm/examples/Fibonacci/Makefile
diff -u llvm/examples/Fibonacci/Makefile:1.4 llvm/examples/Fibonacci/Makefile:1.5
--- llvm/examples/Fibonacci/Makefile:1.4	Sat Sep 11 15:30:11 2004
+++ llvm/examples/Fibonacci/Makefile	Thu Oct 14 14:02:10 2004
@@ -6,10 +6,11 @@
 # the University of Illinois Open Source License. See LICENSE.TXT for details.
 # 
 ##===----------------------------------------------------------------------===##
+
 LEVEL = ../..
 TOOLNAME = Fibonacci
-USEDLIBS = lli-jit lli-interpreter codegen executionengine x86 selectiondag \
-	   scalaropts analysis.a transformutils.a bcreader target.a vmcore \
-	   support.a LLVMsystem.a
+
+# Enable JIT support
+include $(LEVEL)/tools/Makefile.JIT
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list