inspect.lua/Makefile

26 lines
316 B
Makefile
Raw Permalink Normal View History

.PHONY: all dev gen check test perf
LUA := $(shell luarocks config lua_interpreter)
2022-02-08 21:56:03 +00:00
all: gen check test
dev:
luarocks install tl
2022-02-08 22:18:10 +00:00
luarocks install luacheck
luarocks install busted
2022-02-08 21:56:03 +00:00
gen:
tl gen inspect.tl
check:
luacheck inspect.lua
test:
busted
perf:
$(shell luarocks config lua_interpreter) perf.lua
2022-02-08 21:56:03 +00:00