From 3d34735705945b34d5ca764cc7298a026de783ab Mon Sep 17 00:00:00 2001 From: Davin McCall Date: Sat, 17 Jun 2017 11:26:59 +0100 Subject: [PATCH] Build: fix dependencies of tests executable. --- src/tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/Makefile b/src/tests/Makefile index dea221a..b9f4da7 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile @@ -8,7 +8,7 @@ check: build-tests build-tests: tests -tests: $(objects) +tests: $(objects) $(parent_objs) $(CXX) -o tests tests.o $(parent_objs) $(EXTRA_LIBS) $(objects): %.o: %.cc -- 2.25.1