about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-02-21 22:20:23 -0600
committerCase Duckworth2024-02-21 22:20:23 -0600
commitca6b9b3495b36df08a8a7e8759c7da97802654e5 (patch)
tree373ee7d2d0a079632033a84d68f250eb2c774c19
parentadd readme (diff)
downloadlam-ca6b9b3495b36df08a8a7e8759c7da97802654e5.tar.gz
lam-ca6b9b3495b36df08a8a7e8759c7da97802654e5.zip
Add makefile
-rw-r--r--makefile13
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 @@
1LUA ?= luajit
2
3.PHONY: repl
4repl:
5 $(LUA) -e 'require("repl").repl()'
6
7.PHONY: test
8test:
9 $(LUA) -i \
10 -e 'eval=require("eval")' \
11 -e 'pp=require("pp")' \
12 -e 'read=require("read")' \
13 -e 'util=require("util")'