Skip to content

Commit b9a03a0

Browse files
rustyrussellcdecker
authored andcommitted
wallet/Makefile: fix dependency line.
The .o files need regen, not the .c files! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 493c2ab commit b9a03a0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wallet/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ check-source-bolt: $(WALLET_LIB_SRC:%=bolt-check/%) $(WALLET_LIB_HEADERS:%=bolt-
3131
clean: wallet-clean
3232

3333
# Each database driver depends on its rewritten statements.
34-
wallet/db_sqlite3.c: wallet/gen_db_sqlite3.c
35-
wallet/db_postgres.c: wallet/gen_db_postgres.c
34+
wallet/db_sqlite3.o: wallet/gen_db_sqlite3.c
35+
wallet/db_postgres.o: wallet/gen_db_postgres.c
3636

3737
# The following files contain SQL-annotated statements that we need to extact
3838
SQL_FILES := \

0 commit comments

Comments
 (0)