Reid Spencer | 987319d | 2004-09-11 20:30:11 +0000 | [diff] [blame] | 1 | ##===- examples/Fibonacci/Makefile -------------------------*- Makefile -*-===## |
Reid Spencer | f30f28e | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 11cc8b3 | 2007-12-29 20:11:13 +0000 | [diff] [blame] | 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
Reid Spencer | f30f28e | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
Misha Brukman | f9898d7 | 2004-10-14 19:02:13 +0000 | [diff] [blame] | 9 | |
Reid Spencer | 5b81eea | 2004-08-23 19:29:54 +0000 | [diff] [blame] | 10 | LEVEL = ../.. |
Reid Spencer | f30f28e | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 11 | TOOLNAME = Fibonacci |
Reid Spencer | 7e9e0b0 | 2004-11-18 10:03:46 +0000 | [diff] [blame] | 12 | EXAMPLE_TOOL = 1 |
Misha Brukman | f9898d7 | 2004-10-14 19:02:13 +0000 | [diff] [blame] | 13 | |
Chris Lattner | e63072e | 2006-09-04 06:04:03 +0000 | [diff] [blame] | 14 | # Link in JIT support |
Anton Korobeynikov | b9fc3a2 | 2008-08-17 13:55:33 +0000 | [diff] [blame] | 15 | LINK_COMPONENTS := jit interpreter nativecodegen |
Reid Spencer | f30f28e | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 16 | |
| 17 | include $(LEVEL)/Makefile.common |