diff options
author | Case Duckworth | 2024-04-05 13:38:35 -0500 |
---|---|---|
committer | Case Duckworth | 2024-04-05 13:38:35 -0500 |
commit | cfcdffc4281b485b428db376a306e65b1955a042 (patch) | |
tree | 18c696552410951b477207360c4b9aa36635bf25 | |
parent | Fix reading from files ... i'm PRETTY sure (diff) | |
download | lam-cfcdffc4281b485b428db376a306e65b1955a042.tar.gz lam-cfcdffc4281b485b428db376a306e65b1955a042.zip |
require repl in makefile
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 617a695..3495163 100644 --- a/Makefile +++ b/Makefile | |||
@@ -5,7 +5,8 @@ LUA ?= rlwrap luajit \ | |||
5 | -e 'type = require "type"' \ | 5 | -e 'type = require "type"' \ |
6 | -e 'utf8 = require "utf8"' \ | 6 | -e 'utf8 = require "utf8"' \ |
7 | -e 'util = require "util"' \ | 7 | -e 'util = require "util"' \ |
8 | -e 'test = require "test"' | 8 | -e 'test = require "test"' \ |
9 | -e 'repl = require "repl"' | ||
9 | 10 | ||
10 | .PHONY: luarepl | 11 | .PHONY: luarepl |
11 | luarepl: | 12 | luarepl: |