about summary refs log tree commit diff stats
path: root/Makefile
blob: f08ae06052d0adba5da87a1590f37e28a8f81abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
LUA ?= rlwrap luajit \
	-e 'pp = require "pp"' \
	-e 'eval = require "eval"' \
	-e 'read = require "read"' \
	-e 'type = require "type"' \
	-e 'utf8 = require "utf8"' \
	-e 'util = require "util"' \
	-e 'test = require "test"'


.PHONY: repl
repl:
	$(LUA) -e 'require("repl").repl()'

.PHONY: test
test:
	$(LUA) -e 'test.runtests()'

.PHONY: check
check:
	luacheck *.lua