mirror of
https://github.com/TangentFoxy/inspect.lua.git
synced 2025-07-27 18:42:18 +00:00
18 lines
145 B
Makefile
18 lines
145 B
Makefile
all: gen check test
|
|
|
|
dev:
|
|
luarocks install busted
|
|
luarocks install tl
|
|
|
|
gen:
|
|
tl gen inspect.tl
|
|
|
|
check:
|
|
luacheck inspect.lua
|
|
|
|
test:
|
|
busted
|
|
|
|
|
|
|