aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-11-01 15:54:48 -0500
committerJoel Martin <github@martintribe.org>2015-01-09 16:15:49 -0600
commit4d1456b98f34bfa74aea912469aa246b56273d76 (patch)
tree8eb9751fa1d7c0f12214f298e1e2700f1c848db6 /Makefile
parent0de08030ebf15d58f626d822692159f2ef1a0649 (diff)
downloadmal-4d1456b98f34bfa74aea912469aa246b56273d76.tar.gz
mal-4d1456b98f34bfa74aea912469aa246b56273d76.zip
R: step0-3, readline FFI.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a10aff8..860821a 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ PYTHON = python
# Settings
#
-IMPLS = bash c clojure cs go java js make mal perl php ps python ruby rust
+IMPLS = bash c clojure cs go java js make mal perl php ps python r ruby rust
step0 = step0_repl
step1 = step1_read_print
@@ -60,6 +60,7 @@ perl_STEP_TO_PROG = perl/$($(1)).pl
php_STEP_TO_PROG = php/$($(1)).php
ps_STEP_TO_PROG = ps/$($(1)).ps
python_STEP_TO_PROG = python/$($(1)).py
+r_STEP_TO_PROG = r/$($(1)).r
ruby_STEP_TO_PROG = ruby/$($(1)).rb
rust_STEP_TO_PROG = rust/target/$($(1))
@@ -77,6 +78,7 @@ perl_RUNSTEP = perl ../$(2) $(3)
php_RUNSTEP = php ../$(2) $(3)
ps_RUNSTEP = $(4)gs -q -I./ -dNODISPLAY -- ../$(2) $(3)$(4)
python_RUNSTEP = $(PYTHON) ../$(2) $(3)
+r_RUNSTEP = Rscript ../$(2) $(3)
ruby_RUNSTEP = ruby ../$(2) $(3)
rust_RUNSTEP = ../$(2) $(3)