diff options
author | Case Duckworth | 2024-02-21 22:20:23 -0600 |
---|---|---|
committer | Case Duckworth | 2024-02-21 22:20:23 -0600 |
commit | ca6b9b3495b36df08a8a7e8759c7da97802654e5 (patch) | |
tree | 373ee7d2d0a079632033a84d68f250eb2c774c19 | |
parent | add readme (diff) | |
download | lam-ca6b9b3495b36df08a8a7e8759c7da97802654e5.tar.gz lam-ca6b9b3495b36df08a8a7e8759c7da97802654e5.zip |
Add makefile
-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")' | ||