1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00

rename directory

This commit is contained in:
Mitsuru Kariya 2015-08-26 10:13:25 +09:00
parent 8c7587af67
commit 3b7ef8c720
19 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ PYTHON = python
# Settings
#
IMPLS = gawk bash c clojure coffee cpp crystal cs erlang es6 factor forth fsharp go groovy \
IMPLS = awk bash c clojure coffee cpp crystal cs erlang es6 factor forth fsharp go groovy \
haskell java julia js lua make mal ocaml matlab miniMAL nim \
perl php ps python r racket rpython ruby rust scala swift vb guile
@ -26,7 +26,7 @@ step8 = step8_macros
step9 = step9_try
stepA = stepA_mal
EXCLUDE_TESTS += test^gawk^step5 # completes at 10,000
EXCLUDE_TESTS += test^awk^step5 # completes at 10,000
EXCLUDE_TESTS += test^bash^step5 # no stack exhaustion or completion
EXCLUDE_TESTS += test^c^step5 # segfault
EXCLUDE_TESTS += test^cpp^step5 # completes at 10,000
@ -55,7 +55,7 @@ EXCLUDE_PERFS = perf^mal # TODO: fix this
STEP_TEST_FILES = $(strip $(wildcard $(1)/tests/$($(2)).mal) $(wildcard tests/$($(2)).mal))
gawk_STEP_TO_PROG = gawk/$($(1)).awk
awk_STEP_TO_PROG = awk/$($(1)).awk
bash_STEP_TO_PROG = bash/$($(1)).sh
c_STEP_TO_PROG = c/$($(1))
clojure_STEP_TO_PROG = clojure/src/$($(1)).clj
@ -101,7 +101,7 @@ noop =
SPACE = $(noop) $(noop)
export FACTOR_ROOTS := src
gawk_RUNSTEP = gawk -O -f ../$(2) $(3)
awk_RUNSTEP = awk -O -f ../$(2) $(3)
bash_RUNSTEP = bash ../$(2) $(3)
c_RUNSTEP = ../$(2) $(3)
clojure_RUNSTEP = lein with-profile +$(1) trampoline run $(3)

View File

@ -4,7 +4,7 @@
Mal is a Clojure inspired Lisp interpreter.
Mal is implemented in 38 different languages:
Mal is implemented in 39 different languages:
* GNU awk
* Bash shell