From f7de4ac919f01f8a019c41a33000365162195fad Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 9 Sep 2020 12:13:18 +0930 Subject: [PATCH] Makefile: fix missing dependencies for tools tests. This means they are included in `make check-source`, which they now pass (since previous commit). Signed-off-by: Rusty Russell --- tools/test/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/test/Makefile b/tools/test/Makefile index 73610102a..2ebf7d169 100644 --- a/tools/test/Makefile +++ b/tools/test/Makefile @@ -23,6 +23,10 @@ else TOOL_TEST_PROGRAMS := endif +# Get dependencies correct +ALL_C_SOURCES += $(TOOL_GEN_SRC) $(TOOL_TEST_SRC) +ALL_C_HEADERS += $(TOOL_GEN_HEADER) + TOOL_TEST_COMMON_OBJS := \ common/utils.o