From 7788deca5385c5856f12a93db84782880645c372 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 16 May 2023 12:19:54 -0400 Subject: build: Fix test utility compilation --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 40f6b17..361f230 100644 --- a/Makefile +++ b/Makefile @@ -247,10 +247,12 @@ UNIT_CHECKS := $(UNITS:%=check-%) # Testing utilities TEST_UTILS := $(BIN)/tests/mksock $(BIN)/tests/xtouch -tests: $(UNIT_TESTS) $(TEST_UTILS) +TESTS := $(UNIT_TESTS) $(TEST_UTILS) + +tests: $(TESTS) .PHONY: tests -$(UNIT_TESTS): $(BIN)/tests/%: $(OBJ)/tests/%.o $(LIBBFS) +$(TESTS): $(BIN)/tests/%: $(OBJ)/tests/%.o $(LIBBFS) # The different search strategies that we test STRATEGIES := bfs dfs ids eds -- cgit v1.2.3