Reid Spencer | 66e7cd0 | 2004-09-11 20:30:11 +0000 | [diff] [blame] | 1 | ##===- examples/Fibonacci/Makefile -------------------------*- Makefile -*-===## |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file was developed by Valery A. Khamenya and is distributed under |
| 6 | # the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
Misha Brukman | a9504af | 2004-10-14 19:02:13 +0000 | [diff] [blame] | 9 | |
Reid Spencer | 3a168a7 | 2004-08-23 19:29:54 +0000 | [diff] [blame] | 10 | LEVEL = ../.. |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 11 | TOOLNAME = Fibonacci |
Reid Spencer | 815cbcf | 2004-11-18 10:03:46 +0000 | [diff] [blame] | 12 | EXAMPLE_TOOL = 1 |
Misha Brukman | a9504af | 2004-10-14 19:02:13 +0000 | [diff] [blame] | 13 | |
| 14 | # Enable JIT support |
Reid Spencer | 8f63178 | 2004-11-29 07:17:18 +0000 | [diff] [blame] | 15 | LLVMLIBS := JIT |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 16 | |
| 17 | include $(LEVEL)/Makefile.common |