From 19d5305658ba0b8d1b89de6e221aa74cf6ceb456 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 3 Apr 2018 16:49:41 +0930 Subject: [PATCH] wallet/test: fix Makefile so test correctly depend on wallet files. Signed-off-by: Rusty Russell --- wallet/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/test/Makefile b/wallet/test/Makefile index 64a88be6f..3f7c43b6f 100644 --- a/wallet/test/Makefile +++ b/wallet/test/Makefile @@ -20,7 +20,7 @@ ALL_TEST_PROGRAMS += $(WALLET_TEST_PROGRAMS) ALL_OBJS += $(WALLET_LIB_OBJS) $(WALLET_TEST_OBJS) $(WALLET_TEST_PROGRAMS): $(BITCOIN_OBJS) $(WALLET_TEST_COMMON_OBJS) -$(WALLET_TEST_OBJS): $(WALLET_LIB_HEADERS) +$(WALLET_TEST_OBJS): $(WALLET_LIB_HEADERS) $(WALLET_LIB_SRC) wallet/tests: $(WALLET_TEST_PROGRAMS:%=unittest/%)