mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
a25e22737c
The current param_sat accepts "any": rename and move that to invoice.c where it's called. We rename it to param_msat_or_any and invoice.c is our first (trivial) amount_msat user. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
PLUGIN_PAY_SRC := plugins/pay.c
|
|
PLUGIN_PAY_OBJS := $(PLUGIN_PAY_SRC:.c=.o)
|
|
|
|
PLUGIN_LIB_SRC := plugins/libplugin.c
|
|
PLUGIN_LIB_HEADER := plugins/libplugin.h
|
|
PLUGIN_LIB_OBJS := $(PLUGIN_LIB_SRC:.c=.o)
|
|
|
|
PLUGIN_COMMON_OBJS := \
|
|
bitcoin/chainparams.o \
|
|
bitcoin/pubkey.o \
|
|
bitcoin/pullpush.o \
|
|
bitcoin/script.o \
|
|
bitcoin/shadouble.o \
|
|
bitcoin/short_channel_id.o \
|
|
bitcoin/signature.o \
|
|
bitcoin/tx.o \
|
|
bitcoin/varint.o \
|
|
common/amount.o \
|
|
common/bech32.o \
|
|
common/bech32_util.o \
|
|
common/bolt11.o \
|
|
common/daemon.o \
|
|
common/hash_u5.o \
|
|
common/json.o \
|
|
common/json_escaped.o \
|
|
common/json_helpers.o \
|
|
common/json_tok.o \
|
|
common/memleak.o \
|
|
common/param.o \
|
|
common/pseudorand.o \
|
|
common/type_to_string.o \
|
|
common/utils.o \
|
|
common/version.o \
|
|
wire/fromwire.o \
|
|
wire/towire.o
|
|
|
|
plugins/pay: $(PLUGIN_PAY_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS)
|
|
|
|
$(PLUGIN_PAY_OBJS) $(PLUGIN_LIB_OBJS): $(PLUGIN_LIB_HEADER)
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_PROGRAMS += plugins/pay
|
|
ALL_OBJS += $(PLUGIN_PAY_OBJS) $(PLUGIN_LIB_OBJS)
|
|
|
|
check-source: $(PLUGIN_PAY_SRC:%=check-src-include-order/%)
|
|
check-source-bolt: $(PLUGIN_PAY_SRC:%=bolt-check/%)
|
|
check-whitespace: $(PLUGIN_PAY_SRC:%=check-whitespace/%)
|
|
|
|
clean: plugin-clean
|
|
|
|
plugin-clean:
|
|
$(RM) $(PLUGIN_PAY_OBJS) $(PLUGIN_LIB_OBJS)
|