From 5c44d3453b3d490f386b61b0de42d63413c8c014 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Fri, 1 Mar 2024 22:52:18 -0600 Subject: More comprehensive makefile --- makefile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/makefile b/makefile index 3a791df..ff07d99 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -LUA ?= luajit +LUA ?= rlwrap luajit .PHONY: repl repl: @@ -7,7 +7,12 @@ repl: .PHONY: test test: $(LUA) -i \ - -e 'eval=require("eval")' \ - -e 'pp=require("pp")' \ - -e 'read=require("read")' \ - -e 'util=require("util")' + -e 'eval=require"eval"'\ + -e 'global=require"global"'\ + -e 'pp=require"pp"'\ + -e 'read=require"read"'\ + -e 'util=require"util"'\ + -e 'repl=require"repl"'\ + -e 'types=require"types"'\ + -e 'utf8=require"utf8"'\ + -e 'util=require"util"' -- cgit 1.4.1-21-gabe81