Rename Kaleidoscope to show that it's for Chapter 7 of the tutorial.

llvm-svn: 82573
This commit is contained in:
Erick Tryzelaar 2009-09-22 21:15:00 +00:00
parent 6e2b34bc14
commit 2d8813cfb0
5 changed files with 25 additions and 9 deletions
llvm/examples/Kaleidoscope

View File

@ -1,5 +1 @@
set(LLVM_LINK_COMPONENTS core jit interpreter native)
add_llvm_example(Kaleidoscope
toy.cpp
)
add_subdirectory(Chapter7)

View File

@ -0,0 +1,5 @@
set(LLVM_LINK_COMPONENTS core jit interpreter native)
add_llvm_example(Kaleidoscope-Ch7
toy.cpp
)

View File

@ -0,0 +1,15 @@
##===- examples/Kaleidoscope-Ch7/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-Ch7
EXAMPLE_TOOL = 1
LINK_COMPONENTS := core jit interpreter native
include $(LEVEL)/Makefile.common

View File

@ -6,10 +6,10 @@
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
TOOLNAME = Kaleidoscope
EXAMPLE_TOOL = 1
LEVEL=../..
LINK_COMPONENTS := core jit interpreter native
include $(LEVEL)/Makefile.config
PARALLEL_DIRS:= Chapter7
include $(LEVEL)/Makefile.common