2004-09-11 20:30:11 +00:00
|
|
|
##===- examples/Fibonacci/Makefile -------------------------*- Makefile -*-===##
|
2004-08-19 20:10:04 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:11:13 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2004-08-19 20:10:04 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-10-14 19:02:13 +00:00
|
|
|
|
2004-08-23 19:29:54 +00:00
|
|
|
LEVEL = ../..
|
2004-08-19 20:10:04 +00:00
|
|
|
TOOLNAME = Fibonacci
|
2004-11-18 10:03:46 +00:00
|
|
|
EXAMPLE_TOOL = 1
|
2004-10-14 19:02:13 +00:00
|
|
|
|
2006-09-04 06:04:03 +00:00
|
|
|
# Link in JIT support
|
2008-08-17 13:55:33 +00:00
|
|
|
LINK_COMPONENTS := jit interpreter nativecodegen
|
2004-08-19 20:10:04 +00:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|