You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
224 B
15 lines
224 B
1 year ago
|
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/
|