blob: ff07d9968540752210154cb3ffbb0c88f6667e44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
LUA ?= rlwrap luajit
.PHONY: repl
repl:
$(LUA) -e 'require("repl").repl()'
.PHONY: test
test:
$(LUA) -i \
-e 'eval=require"eval"'\
-e 'global=require"global"'\
-e 'pp=require"pp"'\
-e 'read=require"read"'\
-e 'util=require"util"'\
-e 'repl=require"repl"'\
-e 'types=require"types"'\
-e 'utf8=require"utf8"'\
-e 'util=require"util"'
|