blob: 3a791df09f79816032588782ec29c374144d863b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
LUA ?= luajit
.PHONY: repl
repl:
$(LUA) -e 'require("repl").repl()'
.PHONY: test
test:
$(LUA) -i \
-e 'eval=require("eval")' \
-e 'pp=require("pp")' \
-e 'read=require("read")' \
-e 'util=require("util")'
|