Reid Spencer | 66e7cd0 | 2004-09-11 20:30:11 +0000 | [diff] [blame] | 1 | ##===- examples/HowToUseJIT/Makefile -----------------------*- Makefile -*-===## |
Reid Spencer | 26a4ba7 | 2004-08-10 19:14:36 +0000 | [diff] [blame] | 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 57360d1 | 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 | 26a4ba7 | 2004-08-10 19:14:36 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
Reid Spencer | 3a168a7 | 2004-08-23 19:29:54 +0000 | [diff] [blame] | 9 | LEVEL = ../.. |
Reid Spencer | 26a4ba7 | 2004-08-10 19:14:36 +0000 | [diff] [blame] | 10 | TOOLNAME = HowToUseJIT |
Reid Spencer | 815cbcf | 2004-11-18 10:03:46 +0000 | [diff] [blame] | 11 | EXAMPLE_TOOL = 1 |
Misha Brukman | a9504af | 2004-10-14 19:02:13 +0000 | [diff] [blame] | 12 | |
Anton Korobeynikov | c40c8b3 | 2008-08-17 13:55:33 +0000 | [diff] [blame] | 13 | LINK_COMPONENTS := jit interpreter nativecodegen |
Reid Spencer | 26a4ba7 | 2004-08-10 19:14:36 +0000 | [diff] [blame] | 14 | |
| 15 | include $(LEVEL)/Makefile.common |