Build: fix dependencies of tests executable.
authorDavin McCall <davmac@davmac.org>
Sat, 17 Jun 2017 10:26:59 +0000 (11:26 +0100)
committerDavin McCall <davmac@davmac.org>
Sat, 17 Jun 2017 10:26:59 +0000 (11:26 +0100)
src/tests/Makefile

index dea221a14e82534c21cbbeb35481c04a8849cb87..b9f4da72f1e4f5a8fa33249563599d405e2b3109 100644 (file)
@@ -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