From 64b106c13e18c33be0f2b0de532054e0ed3f731d Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 13 Dec 2023 16:10:08 +1100 Subject: add a cool lua repl --- lib/lua-repl/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/lua-repl/Makefile (limited to 'lib/lua-repl/Makefile') diff --git a/lib/lua-repl/Makefile b/lib/lua-repl/Makefile new file mode 100644 index 00000000..a092d939 --- /dev/null +++ b/lib/lua-repl/Makefile @@ -0,0 +1,14 @@ +LUA_FILES=$(shell find repl -type f -name '*.lua') +.PHONY: doc install + +doc: + luadoc -d doc $(LUA_FILES) + +install: + # TODO + +test: + LUA_INIT='' LUA_PATH=';;$(LUA_PATH);?.lua;?/init.lua;t/lib/?.lua' prove + +clean: + rm -rf doc/ -- cgit v1.2.3