From a744965c6752fe38424d5bfcf55acc1b938f11ca Mon Sep 17 00:00:00 2001 From: "James F. Carter" Date: Wed, 5 Oct 2016 12:51:58 +0100 Subject: [PATCH] add missing deps on server object files when building check binaries --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b2102a..eb7cd81 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ CHECK_OBJ := $(CHECK_SRC:tests/unit/%.c=build/%.o) CHECK_BINS := $(CHECK_SRC:tests/unit/%.c=build/%) build/check_%: build/check_%.o - $(LINK) $^ -o $@ $(COMMON_OBJ) -lcheck + $(LINK) $^ -o $@ $(COMMON_OBJ) $(SERVER_OBJ) -lcheck check_objs: $(CHECK_OBJ)