2024-10-15 15:36:47 +01:00
|
|
|
PLUGIN_ASKRENE_SRC := \
|
|
|
|
plugins/askrene/askrene.c \
|
|
|
|
plugins/askrene/layer.c \
|
|
|
|
plugins/askrene/reserve.c \
|
|
|
|
plugins/askrene/mcf.c \
|
|
|
|
plugins/askrene/dijkstra.c \
|
|
|
|
plugins/askrene/flow.c \
|
|
|
|
plugins/askrene/refine.c \
|
|
|
|
plugins/askrene/explain_failure.c \
|
|
|
|
plugins/askrene/graph.c \
|
2024-10-16 08:17:20 +01:00
|
|
|
plugins/askrene/priorityqueue.c \
|
|
|
|
plugins/askrene/algorithm.c
|
2024-10-15 15:36:47 +01:00
|
|
|
|
|
|
|
PLUGIN_ASKRENE_HEADER := \
|
|
|
|
plugins/askrene/askrene.h \
|
|
|
|
plugins/askrene/layer.h \
|
|
|
|
plugins/askrene/reserve.h \
|
|
|
|
plugins/askrene/mcf.h \
|
|
|
|
plugins/askrene/dijkstra.h \
|
|
|
|
plugins/askrene/flow.h \
|
|
|
|
plugins/askrene/refine.h \
|
|
|
|
plugins/askrene/explain_failure.h \
|
|
|
|
plugins/askrene/graph.h \
|
2024-10-16 08:17:20 +01:00
|
|
|
plugins/askrene/priorityqueue.h \
|
|
|
|
plugins/askrene/algorithm.h
|
2024-10-15 15:36:47 +01:00
|
|
|
|
2024-08-07 11:19:53 +09:30
|
|
|
PLUGIN_ASKRENE_OBJS := $(PLUGIN_ASKRENE_SRC:.c=.o)
|
|
|
|
|
|
|
|
$(PLUGIN_ASKRENE_OBJS): $(PLUGIN_ASKRENE_HEADER)
|
|
|
|
|
2024-11-06 21:31:36 +10:30
|
|
|
PLUGIN_ALL_SRC += $(PLUGIN_ASKRENE_SRC)
|
|
|
|
PLUGIN_ALL_HEADER += $(PLUGIN_ASKRENE_HEADER)
|
2024-08-07 11:19:53 +09:30
|
|
|
|
2024-10-04 09:09:53 +09:30
|
|
|
plugins/cln-askrene: $(PLUGIN_ASKRENE_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS) bitcoin/chainparams.o common/gossmap.o common/sciddir_or_pubkey.o common/gossmods_listpeerchannels.o common/fp16.o common/dijkstra.o common/bolt12.o common/bolt12_merkle.o wire/bolt12_wiregen.o wire/onion_wiregen.o common/route.o
|
2024-10-15 10:09:26 +01:00
|
|
|
|
|
|
|
include plugins/askrene/test/Makefile
|