summaryrefslogtreecommitdiff
path: root/lib/lua-repl/Makefile
blob: a092d939f1b03c1ccbf043889c709c4c22777da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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/