From e17d451bbaa3bdd2fe0162dd72a7c151fb2c5d44 Mon Sep 17 00:00:00 2001 From: Matt Whitlock Date: Sat, 5 Apr 2025 01:44:09 -0400 Subject: [PATCH 1/2] cln-rpc/Makefile: fix typo CLN_RPC_GEN_ALL=>CLN_RPC_GENALL Changelog-None --- cln-rpc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cln-rpc/Makefile b/cln-rpc/Makefile index 58ded8c457c3..c43467ab0c94 100644 --- a/cln-rpc/Makefile +++ b/cln-rpc/Makefile @@ -18,4 +18,4 @@ target/${RUST_PROFILE}/examples/cln-plugin-reentrant: ${CLN_RPC_SOURCES} plugins cargo build ${CARGO_OPTS} --example cln-plugin-reentrant -cln-rpc-all: ${CLN_RPC_GEN_ALL} ${CLN_RPC_EXAMPLES} +cln-rpc-all: ${CLN_RPC_GENALL} ${CLN_RPC_EXAMPLES} From d7ddd1aee302458ca216a7b6931a7f3f45fcab02 Mon Sep 17 00:00:00 2001 From: Matt Whitlock Date: Sat, 5 Apr 2025 02:06:38 -0400 Subject: [PATCH 2/2] Makefile: also include cln-grpc/Makefile Changelog-None --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f1b9874ab7fa..2a19bee1ceed 100644 --- a/Makefile +++ b/Makefile @@ -371,6 +371,7 @@ include devtools/Makefile include tools/Makefile ifneq ($(RUST),0) include cln-rpc/Makefile +include cln-grpc/Makefile endif include plugins/Makefile include tests/plugins/Makefile