about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-03-01 22:52:18 -0600
committerCase Duckworth2024-03-01 22:52:18 -0600
commit5c44d3453b3d490f386b61b0de42d63413c8c014 (patch)
tree83c650a4244020df5d56ee8be9d9cd40d3178ac2
parentRewrite read (diff)
downloadlam-5c44d3453b3d490f386b61b0de42d63413c8c014.tar.gz
lam-5c44d3453b3d490f386b61b0de42d63413c8c014.zip
More comprehensive makefile
-rw-r--r--makefile15
1 files changed, 10 insertions, 5 deletions
diff --git a/makefile b/makefile index 3a791df..ff07d99 100644 --- a/makefile +++ b/makefile
@@ -1,4 +1,4 @@
1LUA ?= luajit 1LUA ?= rlwrap luajit
2 2
3.PHONY: repl 3.PHONY: repl
4repl: 4repl:
@@ -7,7 +7,12 @@ repl:
7.PHONY: test 7.PHONY: test
8test: 8test:
9 $(LUA) -i \ 9 $(LUA) -i \
10 -e 'eval=require("eval")' \ 10 -e 'eval=require"eval"'\
11 -e 'pp=require("pp")' \ 11 -e 'global=require"global"'\
12 -e 'read=require("read")' \ 12 -e 'pp=require"pp"'\
13 -e 'util=require("util")' 13 -e 'read=require"read"'\
14 -e 'util=require"util"'\
15 -e 'repl=require"repl"'\
16 -e 'types=require"types"'\
17 -e 'utf8=require"utf8"'\
18 -e 'util=require"util"'