mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Looks like a build race, where we use it before it's finished: ``` msggen cln-rpc/src/model.rs error: this file contains an unclosed delimiter --> cln-grpc/src/server.rs:3661:7 | 84 | { | - unclosed delimiter ... 3661 | } | ^ ``` ... ``` make: *** [plugins/Makefile:298: target/release/cln-grpc] Error 101 make: *** Waiting for unfinished jobs.... ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
309 lines
12 KiB
Makefile
309 lines
12 KiB
Makefile
PLUGIN_PAY_SRC := plugins/pay.c
|
|
PLUGIN_PAY_HEADER :=
|
|
PLUGIN_PAY_OBJS := $(PLUGIN_PAY_SRC:.c=.o)
|
|
|
|
PLUGIN_AUTOCLEAN_SRC := plugins/autoclean.c
|
|
PLUGIN_AUTOCLEAN_OBJS := $(PLUGIN_AUTOCLEAN_SRC:.c=.o)
|
|
|
|
PLUGIN_chanbackup_SRC := plugins/chanbackup.c
|
|
PLUGIN_chanbackup_OBJS := $(PLUGIN_chanbackup_SRC:.c=.o)
|
|
|
|
PLUGIN_TOPOLOGY_SRC := plugins/topology.c
|
|
PLUGIN_TOPOLOGY_OBJS := $(PLUGIN_TOPOLOGY_SRC:.c=.o)
|
|
|
|
PLUGIN_TXPREPARE_SRC := plugins/txprepare.c
|
|
PLUGIN_TXPREPARE_OBJS := $(PLUGIN_TXPREPARE_SRC:.c=.o)
|
|
|
|
PLUGIN_BCLI_SRC := plugins/bcli.c
|
|
PLUGIN_BCLI_OBJS := $(PLUGIN_BCLI_SRC:.c=.o)
|
|
|
|
PLUGIN_COMMANDO_SRC := plugins/commando.c
|
|
PLUGIN_COMMANDO_OBJS := $(PLUGIN_COMMANDO_SRC:.c=.o)
|
|
|
|
PLUGIN_KEYSEND_SRC := plugins/keysend.c
|
|
PLUGIN_KEYSEND_OBJS := $(PLUGIN_KEYSEND_SRC:.c=.o)
|
|
|
|
PLUGIN_LIB_SRC := plugins/libplugin.c common/trace.c
|
|
PLUGIN_LIB_HEADER := plugins/libplugin.h common/trace.h
|
|
PLUGIN_LIB_OBJS := $(PLUGIN_LIB_SRC:.c=.o)
|
|
|
|
PLUGIN_PAY_LIB_SRC := \
|
|
plugins/channel_hint.c \
|
|
plugins/libplugin-pay.c
|
|
|
|
PLUGIN_PAY_LIB_HEADER := \
|
|
plugins/channel_hint.h \
|
|
plugins/libplugin-pay.h
|
|
|
|
PLUGIN_PAY_LIB_OBJS := $(PLUGIN_PAY_LIB_SRC:.c=.o)
|
|
|
|
PLUGIN_OFFERS_SRC := plugins/offers.c plugins/offers_offer.c plugins/offers_invreq_hook.c plugins/offers_inv_hook.c plugins/establish_onion_path.c plugins/fetchinvoice.c
|
|
PLUGIN_OFFERS_OBJS := $(PLUGIN_OFFERS_SRC:.c=.o)
|
|
PLUGIN_OFFERS_HEADER := $(PLUGIN_OFFERS_SRC:.c=.h)
|
|
|
|
PLUGIN_SQL_SRC := plugins/sql.c
|
|
PLUGIN_SQL_HEADER :=
|
|
PLUGIN_SQL_OBJS := $(PLUGIN_SQL_SRC:.c=.o)
|
|
|
|
PLUGIN_EXPOSESECRET_SRC := plugins/exposesecret.c
|
|
PLUGIN_EXPOSESECRET_HEADER :=
|
|
PLUGIN_EXPOSESECRET_OBJS := $(PLUGIN_EXPOSESECRET_SRC:.c=.o)
|
|
|
|
PLUGIN_SPENDER_SRC := \
|
|
plugins/spender/fundchannel.c \
|
|
plugins/spender/main.c \
|
|
plugins/spender/multifundchannel.c \
|
|
plugins/spender/multiwithdraw.c \
|
|
plugins/spender/openchannel.c \
|
|
plugins/spender/splice.c
|
|
PLUGIN_SPENDER_HEADER := \
|
|
plugins/spender/multifundchannel.h \
|
|
plugins/spender/multiwithdraw.h \
|
|
plugins/spender/fundchannel.h \
|
|
plugins/spender/multifundchannel.h \
|
|
plugins/spender/openchannel.h \
|
|
plugins/spender/splice.h
|
|
PLUGIN_SPENDER_OBJS := $(PLUGIN_SPENDER_SRC:.c=.o)
|
|
|
|
PLUGIN_RECOVER_SRC := plugins/recover.c
|
|
PLUGIN_RECOVER_OBJS := $(PLUGIN_RECOVER_SRC:.c=.o)
|
|
|
|
PLUGIN_FUNDER_SRC := \
|
|
plugins/funder.c \
|
|
plugins/funder_policy.c
|
|
PLUGIN_FUNDER_HEADER := \
|
|
plugins/funder_policy.h
|
|
PLUGIN_FUNDER_OBJS := $(PLUGIN_FUNDER_SRC:.c=.o)
|
|
|
|
PLUGIN_RECKLESSRPC_SRC := plugins/recklessrpc.c
|
|
PLUGIN_RECKLESSRPC_OBJS := $(PLUGIN_RECKLESSRPC_SRC:.c=.o)
|
|
|
|
PLUGIN_ALL_SRC := \
|
|
$(PLUGIN_AUTOCLEAN_SRC) \
|
|
$(PLUGIN_chanbackup_SRC) \
|
|
$(PLUGIN_BCLI_SRC) \
|
|
$(PLUGIN_COMMANDO_SRC) \
|
|
$(PLUGIN_FUNDER_SRC) \
|
|
$(PLUGIN_TOPOLOGY_SRC) \
|
|
$(PLUGIN_EXPOSESECRET_SRC) \
|
|
$(PLUGIN_KEYSEND_SRC) \
|
|
$(PLUGIN_TXPREPARE_SRC) \
|
|
$(PLUGIN_LIB_SRC) \
|
|
$(PLUGIN_OFFERS_SRC) \
|
|
$(PLUGIN_PAY_LIB_SRC) \
|
|
$(PLUGIN_PAY_SRC) \
|
|
$(PLUGIN_SPENDER_SRC) \
|
|
$(PLUGIN_RECOVER_SRC) \
|
|
$(PLUGIN_RECKLESSRPC_SRC)
|
|
|
|
PLUGIN_ALL_HEADER := \
|
|
$(PLUGIN_PAY_HEADER) \
|
|
$(PLUGIN_LIB_HEADER) \
|
|
$(PLUGIN_FUNDER_HEADER) \
|
|
$(PLUGIN_PAY_LIB_HEADER) \
|
|
$(PLUGIN_OFFERS_HEADER) \
|
|
$(PLUGIN_SPENDER_HEADER)
|
|
|
|
C_PLUGINS := \
|
|
plugins/autoclean \
|
|
plugins/chanbackup \
|
|
plugins/bcli \
|
|
plugins/commando \
|
|
plugins/funder \
|
|
plugins/topology \
|
|
plugins/exposesecret \
|
|
plugins/keysend \
|
|
plugins/offers \
|
|
plugins/pay \
|
|
plugins/recklessrpc \
|
|
plugins/recover \
|
|
plugins/txprepare \
|
|
plugins/cln-renepay \
|
|
plugins/spenderp \
|
|
plugins/cln-askrene
|
|
|
|
ifneq ($(NO_PYTHON), 1)
|
|
PY_PLUGINS := \
|
|
plugins/clnrest/clnrest \
|
|
plugins/wss-proxy/wss-proxy
|
|
endif
|
|
|
|
ifeq ($(HAVE_SQLITE3),1)
|
|
C_PLUGINS += plugins/sql
|
|
PLUGIN_ALL_SRC += $(PLUGIN_SQL_SRC)
|
|
PLUGIN_ALL_HEADER += $(PLUGIN_SQL_HEADER)
|
|
endif
|
|
|
|
# This is non-python plugins (PY_PLUGINS need their whole directory!)
|
|
PLUGINS := $(C_PLUGINS)
|
|
|
|
ifneq ($(RUST),0)
|
|
# Builtin plugins must be in this plugins dir to work when we're executed
|
|
# *without* make install.
|
|
plugins/cln-grpc: target/${RUST_PROFILE}/cln-grpc
|
|
@cp $< $@
|
|
|
|
PLUGINS += plugins/cln-grpc
|
|
endif
|
|
|
|
PLUGIN_COMMON_OBJS := \
|
|
bitcoin/base58.o \
|
|
bitcoin/block.o \
|
|
bitcoin/chainparams.o \
|
|
bitcoin/feerate.o \
|
|
bitcoin/preimage.o \
|
|
bitcoin/privkey.o \
|
|
bitcoin/psbt.o \
|
|
bitcoin/pubkey.o \
|
|
bitcoin/script.o \
|
|
bitcoin/shadouble.o \
|
|
bitcoin/short_channel_id.o \
|
|
bitcoin/signature.o \
|
|
bitcoin/tx.o \
|
|
bitcoin/varint.o \
|
|
common/addr.o \
|
|
common/amount.o \
|
|
common/autodata.o \
|
|
common/coin_mvt.o \
|
|
common/base32.o \
|
|
common/bech32.o \
|
|
common/bech32_util.o \
|
|
common/bigsize.o \
|
|
common/bolt11.o \
|
|
common/channel_id.o \
|
|
common/daemon.o \
|
|
common/deprecation.o \
|
|
common/features.o \
|
|
common/hash_u5.o \
|
|
common/json_command.o \
|
|
common/json_param.o \
|
|
common/json_parse.o \
|
|
common/json_parse_simple.o \
|
|
common/json_filter.o \
|
|
common/json_stream.o \
|
|
common/lease_rates.o \
|
|
common/memleak.o \
|
|
common/node_id.o \
|
|
common/plugin.o \
|
|
common/psbt_open.o \
|
|
common/pseudorand.o \
|
|
common/random_select.o \
|
|
common/splice_script.o \
|
|
common/setup.o \
|
|
common/status_levels.o \
|
|
common/utils.o \
|
|
common/version.o \
|
|
common/wireaddr.o \
|
|
wire/fromwire.o \
|
|
wire/peer_wiregen.o \
|
|
wire/tlvstream.o \
|
|
wire/towire.o
|
|
|
|
include plugins/askrene/Makefile
|
|
include plugins/bkpr/Makefile
|
|
include plugins/renepay/Makefile
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_C_SOURCES += $(PLUGIN_ALL_SRC)
|
|
ALL_C_HEADERS += $(PLUGIN_ALL_HEADER)
|
|
ALL_PROGRAMS += $(C_PLUGINS)
|
|
|
|
PLUGIN_ALL_OBJS := $(PLUGIN_ALL_SRC:.c=.o)
|
|
|
|
# Make all plugins depend on all plugin headers, for simplicity.
|
|
$(PLUGIN_ALL_OBJS): $(PLUGIN_ALL_HEADER)
|
|
|
|
plugins/pay: $(PLUGIN_PAY_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_PAY_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) common/gossmap.o common/fp16.o common/route.o common/dijkstra.o common/bolt12.o common/bolt12_merkle.o wire/bolt12_wiregen.o bitcoin/block.o common/blindedpay.o common/blindedpath.o common/hmac.o common/blinding.o common/onion_encode.o common/gossmods_listpeerchannels.o common/sciddir_or_pubkey.o wire/onion_wiregen.o
|
|
|
|
plugins/autoclean: $(PLUGIN_AUTOCLEAN_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/chanbackup: $(PLUGIN_chanbackup_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) common/scb_wiregen.o wire/channel_type_wiregen.o
|
|
|
|
plugins/commando: $(PLUGIN_COMMANDO_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
# Topology wants to decode node_announcement, and peer_wiregen which
|
|
# pulls in some of bitcoin/.
|
|
plugins/topology: common/route.o common/dijkstra.o common/gossmap.o common/sciddir_or_pubkey.o common/fp16.o wire/peer_wiregen.o wire/channel_type_wiregen.o bitcoin/block.o bitcoin/preimage.o common/gossmods_listpeerchannels.o $(PLUGIN_TOPOLOGY_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/txprepare: $(PLUGIN_TXPREPARE_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/exposesecret: $(PLUGIN_EXPOSESECRET_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) common/hsm_encryption.o common/codex32.o
|
|
|
|
plugins/bcli: $(PLUGIN_BCLI_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/keysend: wire/tlvstream.o wire/onion_wiregen.o $(PLUGIN_KEYSEND_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_PAY_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) common/gossmap.o common/fp16.o common/route.o common/dijkstra.o common/blindedpay.o common/blindedpath.o common/hmac.o common/blinding.o common/onion_encode.o common/gossmods_listpeerchannels.o common/sciddir_or_pubkey.o
|
|
$(PLUGIN_KEYSEND_OBJS): $(PLUGIN_PAY_LIB_HEADER)
|
|
|
|
plugins/spenderp: bitcoin/block.o bitcoin/preimage.o bitcoin/psbt.o common/psbt_open.o common/json_channel_type.o common/channel_type.o common/features.o wire/peer_wiregen.o $(PLUGIN_SPENDER_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/offers: $(PLUGIN_OFFERS_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) common/addr.o common/bolt12.o common/bolt12_merkle.o common/bolt11_json.o common/iso4217.o $(WIRE_OBJS) $(WIRE_BOLT12_OBJS) bitcoin/block.o common/channel_id.o bitcoin/preimage.o common/blindedpath.o common/bolt12_id.o common/blinding.o common/hmac.o common/json_blinded_path.o common/gossmap.o common/fp16.o $(JSMN_OBJS) common/dijkstra.o common/route.o common/gossmods_listpeerchannels.o common/onion_message.o
|
|
|
|
plugins/funder: bitcoin/psbt.o common/psbt_open.o $(PLUGIN_FUNDER_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/recover: common/gossmap.o common/sciddir_or_pubkey.o common/fp16.o $(PLUGIN_RECOVER_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
plugins/recklessrpc: $(PLUGIN_RECKLESSRPC_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS)
|
|
|
|
# This covers all the low-level list RPCs which return simple arrays
|
|
SQL_LISTRPCS := listchannels listforwards listhtlcs listinvoices listnodes listoffers listpeers listpeerchannels listclosedchannels listtransactions listsendpays bkpr-listaccountevents bkpr-listincome
|
|
SQL_LISTRPCS_SCHEMAS := $(foreach l,$(SQL_LISTRPCS),doc/schemas/lightning-$l.json)
|
|
SQL_SCHEMA_PARTS := $(foreach l,$(SQL_LISTRPCS), plugins/sql-schema_$l_gen.h)
|
|
|
|
# RES_JSON is generated by:
|
|
# 1: deleting description array (used for field details) but keeping description keys
|
|
# 2: deleting additionalProperties, required, enum, maxLength, minLength, pre_return_value_notes, post_return_value_notes, anyOf, oneOf, hidden, untyped, default, comment, added, maximum, minimum, pattern, format
|
|
# (We only need [field].type, [field].name, [field].deprecated, [field].allOf, [field].items.allOf and allOf from response.properties)
|
|
# 3: deleting empty objects from .response.properties
|
|
# But these simple removals drop us from 100k to 18k.
|
|
plugins/sql-schema_%_gen.h: doc/schemas/lightning-%.json
|
|
@jq 'walk(if type == "object" then if has("description") and (.description | type) == "array" then del(.description) else . end else . end ) | walk(if type == "object" then del(.additionalProperties, .required, .enum, .maxLength, .minLength, .pre_return_value_notes, .post_return_value_notes, .anyOf, .oneOf, .hidden, .untyped, .default, .comment, .added, .maximum, .minimum, .pattern, .format) else . end) | walk(if type == "object" then with_entries(select(.value != {})) else . end) | .response.properties' < $< > $@
|
|
|
|
# Regen if these rules change!
|
|
$(SQL_SCHEMA_PARTS): plugins/Makefile
|
|
|
|
plugins/sql-schema_gen.h: $(SQL_SCHEMA_PARTS)
|
|
@$(call VERBOSE,GEN $@, set -e; (\
|
|
SEP=""; \
|
|
echo "\"{"; \
|
|
for l in $(SQL_LISTRPCS); do \
|
|
echo "$$SEP\"$$l\":{\"properties\":$$(cat plugins/sql-schema_$${l}_gen.h)}" | sed s/\"/\\\"/g; \
|
|
SEP=","; \
|
|
done | sed "s/\\\"/\\\\\"/g"; \
|
|
echo "}\"") | tr -d " \n" > $@ \
|
|
)
|
|
|
|
plugins/sql.o: plugins/sql-schema_gen.h
|
|
plugins/sql: $(PLUGIN_SQL_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) common/gossip_store.o gossipd/gossip_store_wiregen.o
|
|
|
|
# Generated from PLUGINS definition in plugins/Makefile
|
|
ALL_C_HEADERS += plugins/list_of_builtin_plugins_gen.h
|
|
PLUGIN_BASES := $(PLUGINS:plugins/%=%) $(PY_PLUGINS:plugins/%=%)
|
|
|
|
plugins/list_of_builtin_plugins_gen.h: plugins/Makefile Makefile config.vars
|
|
@$(call VERBOSE,GEN $@,echo "static const char *list_of_builtin_plugins[] = { $(PLUGIN_BASES:%=\"%\",) NULL };" > $@)
|
|
|
|
target/${RUST_PROFILE}/examples/cln-subscribe-wildcard: ${CLN_PLUGIN_SRC} plugins/examples/cln-subscribe-wildcard.rs
|
|
cargo build ${CARGO_OPTS} --example cln-subscribe-wildcard
|
|
|
|
CLN_PLUGIN_EXAMPLES := \
|
|
target/${RUST_PROFILE}/examples/cln-plugin-startup \
|
|
target/${RUST_PROFILE}/examples/cln-plugin-reentrant \
|
|
target/${RUST_PROFILE}/examples/cln-rpc-getinfo \
|
|
target/${RUST_PROFILE}/examples/cln-subscribe-wildcard
|
|
|
|
CLN_PLUGIN_SRC = $(shell find plugins/src -name "*.rs")
|
|
CLN_GRPC_PLUGIN_SRC = $(shell find plugins/grpc-plugin/src -name "*.rs")
|
|
|
|
target/${RUST_PROFILE}/cln-grpc: ${CLN_PLUGIN_SRC} ${CLN_GRPC_PLUGIN_SRC} $(MSGGEN_GEN_ALL)
|
|
cargo build ${CARGO_OPTS} --bin cln-grpc
|
|
|
|
ifneq ($(RUST),0)
|
|
DEFAULT_TARGETS += $(CLN_PLUGIN_EXAMPLES) plugins/cln-grpc
|
|
endif
|
|
|
|
clean: plugins-clean
|
|
plugins-clean:
|
|
$(RM) $(PLUGINS) $(CLN_PLUGIN_EXAMPLES)
|
|
$(RM) plugins/sql-schema_gen.h
|
|
|
|
include plugins/test/Makefile
|