summaryrefslogtreecommitdiff
path: root/lib/lua-repl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lua-repl/Makefile')
-rw-r--r--lib/lua-repl/Makefile14
1 files changed, 14 insertions, 0 deletions
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/