wallet/test: fix Makefile so test correctly depend on wallet files.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2018-04-03 16:49:41 +09:30
parent 6bb47276ce
commit 19d5305658
1 changed files with 1 additions and 1 deletions

View File

@ -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/%)