diff options
-rw-r--r-- | makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..3a791df --- /dev/null +++ b/makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | LUA ?= luajit | ||
2 | |||
3 | .PHONY: repl | ||
4 | repl: | ||
5 | $(LUA) -e 'require("repl").repl()' | ||
6 | |||
7 | .PHONY: test | ||
8 | test: | ||
9 | $(LUA) -i \ | ||
10 | -e 'eval=require("eval")' \ | ||
11 | -e 'pp=require("pp")' \ | ||
12 | -e 'read=require("read")' \ | ||
13 | -e 'util=require("util")' | ||