From dfa5f324717feff74959a8346c0539356c0db3f5 Mon Sep 17 00:00:00 2001 From: Matthew Zito Date: Sun, 29 Oct 2023 22:21:57 -0700 Subject: [PATCH] chore(Makefile): compile bins if not present when running tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d95aa898..c745a925 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ install: $(BINS) uninstall: $(foreach c, $(BINS), $(RM) $(PREFIX)/bin/$(c);) -test: +test: $(BINS) @./test.sh # create a list of auto dependencies