summaryrefslogtreecommitdiff
path: root/examples/Fibonacci
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-10-14 19:02:13 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-10-14 19:02:13 +0000
commita9504af51275098d2a1e4aec3f9093247bb45ec7 (patch)
tree760541320c177954a2820c246981ebfe10bdce4d /examples/Fibonacci
parent53c8f295868312af305e1bcb4422cc7686c38bc1 (diff)
downloadllvm-a9504af51275098d2a1e4aec3f9093247bb45ec7.tar.gz
llvm-a9504af51275098d2a1e4aec3f9093247bb45ec7.tar.bz2
llvm-a9504af51275098d2a1e4aec3f9093247bb45ec7.tar.xz
Use the shared Makefile.JIT for JIT-enablement, which also enables the examples
to have the JIT functioning on more platforms than just x86 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16993 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Fibonacci')
-rw-r--r--examples/Fibonacci/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/Fibonacci/Makefile b/examples/Fibonacci/Makefile
index ac6de5df5f..2c9a53149c 100644
--- a/examples/Fibonacci/Makefile
+++ b/examples/Fibonacci/Makefile
@@ -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