From 9bbe5ddf93c7c8b17a73318bc89dd1330f4f3f59 Mon Sep 17 00:00:00 2001 From: Andrey Listopadov Date: Sun, 21 Aug 2022 18:03:25 +0000 Subject: release v1.0.0 Almost complete rewrite of the library, complete with lazy sequences, immutable tables, transients, transducers, better equality semantics, and more correct code generation in macros. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 97494d6..dac2130 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ distclean: clean test: $(FNLTESTS) @echo "Testing on" $$($(LUA) -v) >&2 - @$(foreach test,$?,$(FENNEL) --no-compiler-sandbox --lua $(LUA) $(test) || exit;) + @$(foreach test,$?,LUA_PATH="./?/init.lua;$LUA_PATH" $(FENNEL) $(COMPILEFLAGS) --lua $(LUA) $(test) || exit;) ifdef FENNELDOC @fenneldoc --mode check $(FNLDOCS) || exit else @@ -43,7 +43,7 @@ endif testall: $(LUAEXECUTABLES) @$(foreach lua,$?,LUA=$(lua) make test || exit;) -luacov: COMPILEFLAGS = --no-metadata --correlate +luacov: COMPILEFLAGS += --correlate luacov: distclean build $(LUATESTS) @$(foreach test,$(LUATESTS),$(LUA) -lluarocks.loader -lluacov $(test) || exit;) luacov @@ -52,7 +52,6 @@ ifdef LUACOV_COBERTURA luacov-cobertura -o coverage/cobertura-coverage.xml endif -luacov-console: COMPILEFLAGS = --no-metadata luacov-console: clean build $(LUATESTS) @$(foreach test,$(LUATESTS),$(LUA) -lluarocks.loader -lluacov $(test) || exit;) luacov -- cgit v1.2.3