mirror of
https://github.com/kikito/inspect.lua.git
synced 2024-12-15 14:34:21 +00:00
19 lines
172 B
Makefile
19 lines
172 B
Makefile
all: gen check test
|
|
|
|
dev:
|
|
luarocks install tl
|
|
luarocks install luacheck
|
|
luarocks install busted
|
|
|
|
gen:
|
|
tl gen inspect.tl
|
|
|
|
check:
|
|
luacheck inspect.lua
|
|
|
|
test:
|
|
busted
|
|
|
|
|
|
|