about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCase Duckworth2024-03-10 21:39:53 -0500
committerCase Duckworth2024-03-10 21:39:53 -0500
commita72ff678da253fce46e8e4648f6e4cf5ce1ea9b4 (patch)
treea82501fca97f4adc272d05145548d10cabe3ea2a /Makefile
parentUgghhhh totally not working (diff)
downloadlam-a72ff678da253fce46e8e4648f6e4cf5ce1ea9b4.tar.gz
lam-a72ff678da253fce46e8e4648f6e4cf5ce1ea9b4.zip
uh new start
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 11 insertions, 9 deletions
diff --git a/Makefile b/Makefile index ff07d99..54c4f2c 100644 --- a/Makefile +++ b/Makefile
@@ -7,12 +7,14 @@ repl:
7.PHONY: test 7.PHONY: test
8test: 8test:
9 $(LUA) -i \ 9 $(LUA) -i \
10 -e 'eval=require"eval"'\ 10 -e 'pp = require "pp"' \
11 -e 'global=require"global"'\ 11 -e 'eval = require "eval"' \
12 -e 'pp=require"pp"'\ 12 -e 'read = require "read"' \
13 -e 'read=require"read"'\ 13 -e 'type = require "type"' \
14 -e 'util=require"util"'\ 14 -e 'utf8 = require "utf8"' \
15 -e 'repl=require"repl"'\ 15 -e 'util = require "util"' \
16 -e 'types=require"types"'\ 16 -e 'test = require "test"'
17 -e 'utf8=require"utf8"'\ 17
18 -e 'util=require"util"' 18.PHONY: check
19check:
20 luacheck *.lua