diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/makefile b/makefile index 3a791df..ff07d99 100644 --- a/makefile +++ b/makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | LUA ?= luajit | 1 | LUA ?= rlwrap luajit |
2 | 2 | ||
3 | .PHONY: repl | 3 | .PHONY: repl |
4 | repl: | 4 | repl: |
@@ -7,7 +7,12 @@ repl: | |||
7 | .PHONY: test | 7 | .PHONY: test |
8 | test: | 8 | test: |
9 | $(LUA) -i \ | 9 | $(LUA) -i \ |
10 | -e 'eval=require("eval")' \ | 10 | -e 'eval=require"eval"'\ |
11 | -e 'pp=require("pp")' \ | 11 | -e 'global=require"global"'\ |
12 | -e 'read=require("read")' \ | 12 | -e 'pp=require"pp"'\ |
13 | -e 'util=require("util")' | 13 | -e 'read=require"read"'\ |
14 | -e 'util=require"util"'\ | ||
15 | -e 'repl=require"repl"'\ | ||
16 | -e 'types=require"types"'\ | ||
17 | -e 'utf8=require"utf8"'\ | ||
18 | -e 'util=require"util"' | ||