about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCase Duckworth2024-03-19 22:13:44 -0500
committerCase Duckworth2024-03-19 22:13:44 -0500
commit9c5643d5f78e4228d47e293b421d7f388d47945f (patch)
tree3925d137d7820622b38f183ad259475ff48b39e5 /Makefile
parentAdd QUOTE, QUASIQUOTE, UNQUOTE reading and generalize (diff)
downloadlam-9c5643d5f78e4228d47e293b421d7f388d47945f.tar.gz
lam-9c5643d5f78e4228d47e293b421d7f388d47945f.zip
A new start!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 10 insertions, 9 deletions
diff --git a/Makefile b/Makefile index 54c4f2c..f08ae06 100644 --- a/Makefile +++ b/Makefile
@@ -1,4 +1,12 @@
1LUA ?= rlwrap luajit 1LUA ?= rlwrap luajit \
2 -e 'pp = require "pp"' \
3 -e 'eval = require "eval"' \
4 -e 'read = require "read"' \
5 -e 'type = require "type"' \
6 -e 'utf8 = require "utf8"' \
7 -e 'util = require "util"' \
8 -e 'test = require "test"'
9
2 10
3.PHONY: repl 11.PHONY: repl
4repl: 12repl:
@@ -6,14 +14,7 @@ repl:
6 14
7.PHONY: test 15.PHONY: test
8test: 16test:
9 $(LUA) -i \ 17 $(LUA) -e 'test.runtests()'
10 -e 'pp = require "pp"' \
11 -e 'eval = require "eval"' \
12 -e 'read = require "read"' \
13 -e 'type = require "type"' \
14 -e 'utf8 = require "utf8"' \
15 -e 'util = require "util"' \
16 -e 'test = require "test"'
17 18
18.PHONY: check 19.PHONY: check
19check: 20check: