mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-18 13:08:13 +02:00
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Added: libplugin: support for options which accumulate if specified more than once ("multi": true).
15 lines
461 B
Makefile
15 lines
461 B
Makefile
PLUGIN_XPAY_SRC := \
|
|
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
|