16 lines
155 B
Makefile
16 lines
155 B
Makefile
|
DOCS_DIR := docs
|
||
|
|
||
|
spec:
|
||
|
busted .
|
||
|
|
||
|
clean:
|
||
|
rm -rf build *.so
|
||
|
|
||
|
lint:
|
||
|
luacheck src spec examples
|
||
|
|
||
|
doc:
|
||
|
ldoc -d ${DOCS_DIR} .
|
||
|
|
||
|
.PHONY: clean lint spec doc
|