aboutsummaryrefslogtreecommitdiffstats
path: root/examples/BrainF/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-09-12 18:24:00 +0000
committerChris Lattner <sabre@nondot.org>2007-09-12 18:24:00 +0000
commite26f6a8b964025e4fac12cb6f7c53975efb06b0c (patch)
tree9a11138b3fd17b1b812d75b34d3e8a4f9972aabc /examples/BrainF/Makefile
parentb36024422c1355c8ad7835745f411e515a7a645b (diff)
downloadexternal_llvm-e26f6a8b964025e4fac12cb6f7c53975efb06b0c.zip
external_llvm-e26f6a8b964025e4fac12cb6f7c53975efb06b0c.tar.gz
external_llvm-e26f6a8b964025e4fac12cb6f7c53975efb06b0c.tar.bz2
add a new BF->LLVM translator, contributed by Sterling Stein.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41881 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/BrainF/Makefile')
-rw-r--r--examples/BrainF/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/BrainF/Makefile b/examples/BrainF/Makefile
new file mode 100644
index 0000000..54d298c
--- /dev/null
+++ b/examples/BrainF/Makefile
@@ -0,0 +1,15 @@
+##===- examples/BrainF/Makefile ----------------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file was developed by Sterling Stein and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+LEVEL = ../..
+TOOLNAME = BrainF
+EXAMPLE_TOOL = 1
+
+LINK_COMPONENTS := jit bitwriter native interpreter
+
+include $(LEVEL)/Makefile.common