From 5fa5a0a32373861b3e73ce3e9c7e71a8ec854ce6 Mon Sep 17 00:00:00 2001 From: XeroOl Date: Thu, 28 Mar 2024 23:59:45 -0500 Subject: [PATCH] `make repl` runs a fennel repl with the path set correctly --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 459d81d..b6c5430 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,9 @@ clean: test: TESTING=1 $(FENNEL) $(OPTS) --add-fennel-path "./test/faith/?.fnl" test/init.fnl +repl: + $(FENNEL) $(OPTS) --add-fennel-path "./test/faith/?.fnl" + testall: $(MAKE) test LUA=lua5.1 $(MAKE) test LUA=lua5.2