|
@ -24,13 +24,12 @@ PLUGIN_PAY_LIB_SRC := plugins/libplugin-pay.c |
|
|
PLUGIN_PAY_LIB_HEADER := plugins/libplugin-pay.h |
|
|
PLUGIN_PAY_LIB_HEADER := plugins/libplugin-pay.h |
|
|
PLUGIN_PAY_LIB_OBJS := $(PLUGIN_PAY_LIB_SRC:.c=.o) |
|
|
PLUGIN_PAY_LIB_OBJS := $(PLUGIN_PAY_LIB_SRC:.c=.o) |
|
|
|
|
|
|
|
|
PLUGIN_MULTIFUNDCHANNEL_SRC := plugins/multifundchannel.c |
|
|
|
|
|
PLUGIN_MULTIFUNDCHANNEL_OBJS := $(PLUGIN_MULTIFUNDCHANNEL_SRC:.c=.o) |
|
|
|
|
|
|
|
|
|
|
|
PLUGIN_SPENDER_SRC := \
|
|
|
PLUGIN_SPENDER_SRC := \
|
|
|
plugins/spender/main.c \
|
|
|
plugins/spender/main.c \
|
|
|
|
|
|
plugins/spender/multifundchannel.c \
|
|
|
plugins/spender/multiwithdraw.c |
|
|
plugins/spender/multiwithdraw.c |
|
|
PLUGIN_SPENDER_HEADER := \
|
|
|
PLUGIN_SPENDER_HEADER := \
|
|
|
|
|
|
plugins/spender/multifundchannel.h \
|
|
|
plugins/spender/multiwithdraw.h |
|
|
plugins/spender/multiwithdraw.h |
|
|
PLUGIN_SPENDER_OBJS := $(PLUGIN_SPENDER_SRC:.c=.o) |
|
|
PLUGIN_SPENDER_OBJS := $(PLUGIN_SPENDER_SRC:.c=.o) |
|
|
|
|
|
|
|
@ -41,7 +40,6 @@ PLUGIN_ALL_SRC := \ |
|
|
$(PLUGIN_KEYSEND_SRC) \
|
|
|
$(PLUGIN_KEYSEND_SRC) \
|
|
|
$(PLUGIN_TXPREPARE_SRC) \
|
|
|
$(PLUGIN_TXPREPARE_SRC) \
|
|
|
$(PLUGIN_LIB_SRC) \
|
|
|
$(PLUGIN_LIB_SRC) \
|
|
|
$(PLUGIN_MULTIFUNDCHANNEL_SRC) \
|
|
|
|
|
|
$(PLUGIN_PAY_LIB_SRC) \
|
|
|
$(PLUGIN_PAY_LIB_SRC) \
|
|
|
$(PLUGIN_PAY_SRC) \
|
|
|
$(PLUGIN_PAY_SRC) \
|
|
|
$(PLUGIN_SPENDER_SRC) |
|
|
$(PLUGIN_SPENDER_SRC) |
|
@ -57,7 +55,6 @@ PLUGINS := \ |
|
|
plugins/fundchannel \
|
|
|
plugins/fundchannel \
|
|
|
plugins/keysend \
|
|
|
plugins/keysend \
|
|
|
plugins/pay \
|
|
|
plugins/pay \
|
|
|
plugins/multifundchannel \
|
|
|
|
|
|
plugins/txprepare \
|
|
|
plugins/txprepare \
|
|
|
plugins/spenderp |
|
|
plugins/spenderp |
|
|
|
|
|
|
|
@ -120,8 +117,6 @@ plugins/bcli: bitcoin/chainparams.o $(PLUGIN_BCLI_OBJS) $(PLUGIN_LIB_OBJS) $(PLU |
|
|
plugins/keysend: bitcoin/chainparams.o wire/tlvstream.o wire/onion$(EXP)_wiregen.o $(PLUGIN_KEYSEND_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_PAY_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS) |
|
|
plugins/keysend: bitcoin/chainparams.o wire/tlvstream.o wire/onion$(EXP)_wiregen.o $(PLUGIN_KEYSEND_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_PAY_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS) |
|
|
$(PLUGIN_KEYSEND_OBJS): $(PLUGIN_PAY_LIB_HEADER) |
|
|
$(PLUGIN_KEYSEND_OBJS): $(PLUGIN_PAY_LIB_HEADER) |
|
|
|
|
|
|
|
|
plugins/multifundchannel: bitcoin/chainparams.o common/addr.o $(PLUGIN_MULTIFUNDCHANNEL_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS) |
|
|
|
|
|
|
|
|
|
|
|
plugins/spenderp: bitcoin/chainparams.o $(PLUGIN_SPENDER_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS) |
|
|
plugins/spenderp: bitcoin/chainparams.o $(PLUGIN_SPENDER_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS) |
|
|
|
|
|
|
|
|
$(PLUGIN_ALL_OBJS): $(PLUGIN_LIB_HEADER) |
|
|
$(PLUGIN_ALL_OBJS): $(PLUGIN_LIB_HEADER) |
|
|