summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2021-02-15 21:15:39 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2021-02-15 21:15:39 +0300
commit4e1bcfb658f77acc038ba4de00513f0fef4b458b (patch)
tree91f25e0f6f59e3da6b168f4ba6c752ea7e1b2b06 /Makefile
parent262228c12844bc1d98a5dd1d1f4baa9eb3b97bb4 (diff)
fix: test library first, then test docs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2e03b9b..25fd154 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,7 @@ distclean: clean
test: $(FNLTESTS)
@echo "Testing on" $$($(LUA) -v) >&2
+ @$(foreach test,$?,$(FENNEL) --lua $(LUA) --metadata $(test) || exit;)
ifdef FENNELDOC
@fenneldoc --mode check $(FNLDOCS) || exit
else
@@ -34,7 +35,6 @@ else
@echo "https://gitlab.com/andreyorst/fenneldoc" >&2
@echo ""
endif
- @$(foreach test,$?,$(FENNEL) --lua $(LUA) --metadata $(test) || exit;)
testall: $(LUA_EXECUTABLES)
@$(foreach lua,$?,LUA=$(lua) make test || exit;)