diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-04-12 20:47:23 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-04-12 20:47:23 +0000 |
commit | 9f12a531edce66d692d61480e6cbd29d9b981f52 (patch) | |
tree | 87b38662e0f248791b7f62c52e01ba0f0f8bb113 /examples/Kaleidoscope/Makefile | |
parent | 3ef05ca396cb2a71df7ecac0aa2fe753245be7f9 (diff) | |
download | external_llvm-9f12a531edce66d692d61480e6cbd29d9b981f52.zip external_llvm-9f12a531edce66d692d61480e6cbd29d9b981f52.tar.gz external_llvm-9f12a531edce66d692d61480e6cbd29d9b981f52.tar.bz2 |
Add Kaleidoscope to examples/ so that it gets built regularly and we'll notice
if an API change causes it to be out of date. The code is copied out of
LangImpl7.html.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Kaleidoscope/Makefile')
-rw-r--r-- | examples/Kaleidoscope/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/Kaleidoscope/Makefile b/examples/Kaleidoscope/Makefile new file mode 100644 index 0000000..c1759a0 --- /dev/null +++ b/examples/Kaleidoscope/Makefile @@ -0,0 +1,15 @@ +##===- examples/Kaleidoscope/Makefile ----------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +LEVEL = ../.. +TOOLNAME = Kaleidoscope +EXAMPLE_TOOL = 1 + +LINK_COMPONENTS := core jit native + +include $(LEVEL)/Makefile.common |