From 30f129252d29f4ec7c9ed96ecf178a8f2322a6ec Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 12 Sep 2018 05:52:49 +0930 Subject: [PATCH] wallet: include Makefile from lightningd/Makefile so that lightning headers defined. Signed-off-by: Rusty Russell --- Makefile | 1 - lightningd/Makefile | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2324f8d2..48b900822 100644 --- a/Makefile +++ b/Makefile @@ -186,7 +186,6 @@ include external/Makefile include bitcoin/Makefile include common/Makefile include wire/Makefile -include wallet/Makefile include hsmd/Makefile include gossipd/Makefile include openingd/Makefile diff --git a/lightningd/Makefile b/lightningd/Makefile index ce554d776..918b289f3 100644 --- a/lightningd/Makefile +++ b/lightningd/Makefile @@ -100,6 +100,8 @@ LIGHTNINGD_HEADERS_GEN = \ ALL_GEN_HEADERS += $(LIGHTNINGD_HEADERS_GEN) +include wallet/Makefile + # All together in one convenient var LIGHTNINGD_HEADERS = $(LIGHTNINGD_HEADERS_NOGEN) $(LIGHTNINGD_HEADERS_GEN) $(EXTERNAL_HEADERS) $(WIRE_HEADERS) $(BITCOIN_HEADERS) $(COMMON_HEADERS) $(WALLET_LIB_HEADERS) $(LIGHTNINGD_HSM_CLIENT_HEADERS)