diff options
| author | Chouser <chouser@n01se.net> | 2015-02-06 00:38:34 -0500 |
|---|---|---|
| committer | Chouser <chouser@n01se.net> | 2015-02-21 13:22:43 -0500 |
| commit | 59038a10f0e3ad65675cafdb149eb61405e334d3 (patch) | |
| tree | 205693635fa8ae0abe553e0e26bfc4f473a4f6db /Makefile | |
| parent | ccc7d9d199c56473997b40f49c6bfc79d9799fd2 (diff) | |
| download | mal-59038a10f0e3ad65675cafdb149eb61405e334d3.tar.gz mal-59038a10f0e3ad65675cafdb149eb61405e334d3.zip | |
forth: Added lists, ints, symbols for step 1
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,7 +10,7 @@ PYTHON = python # Settings # -IMPLS = bash c clojure coffee cs go haskell java js lua make mal \ +IMPLS = bash c clojure coffee cs forth go haskell java js lua make mal \ ocaml matlab perl php ps python r racket ruby rust scala vb step0 = step0_repl @@ -54,6 +54,7 @@ c_STEP_TO_PROG = c/$($(1)) clojure_STEP_TO_PROG = clojure/src/$($(1)).clj coffee_STEP_TO_PROG = coffee/$($(1)).coffee cs_STEP_TO_PROG = cs/$($(1)).exe +forth_STEP_TO_PROG = forth/$($(1)).fs go_STEP_TO_PROG = go/$($(1)) java_STEP_TO_PROG = java/src/main/java/mal/$($(1)).java haskell_STEP_TO_PROG = haskell/$($(1)) @@ -84,6 +85,7 @@ c_RUNSTEP = ../$(2) $(3) clojure_RUNSTEP = lein with-profile +$(1) trampoline run $(3) coffee_RUNSTEP = coffee ../$(2) $(3) cs_RUNSTEP = mono ../$(2) --raw $(3) +forth_RUNSTEP = gforth ../$(2) $(3) go_RUNSTEP = ../$(2) $(3) haskell_RUNSTEP = ../$(2) $(3) java_RUNSTEP = mvn -quiet exec:java -Dexec.mainClass="mal.$($(1))" -Dexec.args="--raw$(if $(3), $(3),)" |
