mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-13 12:32:55 +02:00
This will make life easier when we remove the pay plugin, but also fixes an issue where `listpays` can indicate ongoing payments are failed, even though xpay is still working on it. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
490 B
Makefile
16 lines
490 B
Makefile
PLUGIN_XPAY_SRC := \
|
|
plugins/xpay/listpays.c \
|
|
plugins/xpay/xpay.c
|
|
|
|
PLUGIN_XPAY_HDRS :=
|
|
|
|
PLUGIN_XPAY_OBJS := $(PLUGIN_XPAY_SRC:.c=.o)
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_C_SOURCES += $(PLUGIN_XPAY_SRC)
|
|
ALL_C_HEADERS += $(PLUGIN_XPAY_HDRS)
|
|
|
|
# Make all plugins depend on all plugin headers, for simplicity (and this file)
|
|
$(PLUGIN_XPAY_OBJS): $(PLUGIN_XPAY_HDRS) $(PLUGIN_LIB_HEADER) plugins/xpay/Makefile
|
|
|
|
plugins/cln-xpay: $(PLUGIN_XPAY_OBJS) $(PLUGIN_LIB_OBJS) libcommon.a
|