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

Merge pull request #317 from kanaka/rename-short-abbreviations

Rename short abbreviations
This commit is contained in:
Joel Martin 2018-06-22 12:43:56 -05:00 committed by GitHub
commit 8c2a6e122d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
49 changed files with 11 additions and 11 deletions

View File

@ -32,7 +32,7 @@ matrix:
- {env: IMPL=fsharp, services: [docker]}
- {env: IMPL=go, services: [docker]}
- {env: IMPL=groovy, services: [docker]}
- {env: IMPL=gst, services: [docker]}
- {env: IMPL=gnu-smalltalk, services: [docker]}
- {env: IMPL=guile, services: [docker]}
- {env: IMPL=haskell, services: [docker]}
- {env: IMPL=haxe haxe_MODE=neko, services: [docker]}
@ -61,7 +61,7 @@ matrix:
- {env: IMPL=perl, services: [docker]}
- {env: IMPL=perl6, services: [docker]}
- {env: IMPL=php, services: [docker]}
- {env: IMPL=pil, services: [docker]}
- {env: IMPL=picolisp, services: [docker]}
- {env: IMPL=plpgsql, services: [docker]}
# - {env: IMPL=plsql, services: [docker]}
- {env: IMPL=ps, services: [docker]}

View File

@ -79,11 +79,11 @@ DOCKERIZE =
#
IMPLS = ada awk bash basic c chuck clojure coffee common-lisp cpp crystal cs d dart \
elisp elixir elm erlang es6 factor fantom forth fsharp go groovy gst guile haskell \
haxe hy io java js julia kotlin livescript logo lua make mal matlab miniMAL \
nasm nim objc objpascal ocaml perl perl6 php pil plpgsql plsql powershell ps \
python r racket rexx rpython ruby rust scala scheme skew swift swift3 tcl \
ts vb vhdl vimscript yorick
elisp elixir elm erlang es6 factor fantom forth fsharp go groovy gnu-smalltalk \
guile haskell haxe hy io java js julia kotlin livescript logo lua make mal \
matlab miniMAL nasm nim objc objpascal ocaml perl perl6 php picolisp plpgsql \
plsql powershell ps python r racket rexx rpython ruby rust scala scheme skew \
swift swift3 tcl ts vb vhdl vimscript yorick
EXTENSION = .mal
@ -196,7 +196,7 @@ forth_STEP_TO_PROG = forth/$($(1)).fs
fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
go_STEP_TO_PROG = go/$($(1))
groovy_STEP_TO_PROG = groovy/$($(1)).groovy
gst_STEP_TO_PROG = gst/$($(1)).st
gnu-smalltalk_STEP_TO_PROG = gnu-smalltalk/$($(1)).st
guile_STEP_TO_PROG = guile/$($(1)).scm
haskell_STEP_TO_PROG = haskell/$($(1))
haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(haxe_MODE))
@ -221,7 +221,7 @@ ocaml_STEP_TO_PROG = ocaml/$($(1))
perl_STEP_TO_PROG = perl/$($(1)).pl
perl6_STEP_TO_PROG = perl6/$($(1)).pl
php_STEP_TO_PROG = php/$($(1)).php
pil_STEP_TO_PROG = pil/$($(1)).l
picolisp_STEP_TO_PROG = picolisp/$($(1)).l
plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
plsql_STEP_TO_PROG = plsql/$($(1)).sql
powershell_STEP_TO_PROG = powershell/$($(1)).ps1

View File

@ -480,7 +480,7 @@ guile -L ./ stepX_YYY.scm
The Smalltalk implementation of mal has been tested with GNU Smalltalk 3.2.91.
```
cd gst
cd gnu-smalltalk
./run
```
@ -761,7 +761,7 @@ The Picolisp implementation requires libreadline and Picolisp 3.1.11
or later.
```
cd pil
cd picolisp
./run
```