mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-24 23:18:25 +01:00
Changelog-EXPERIMENTAL: askrene: add graph algorithms module Signed-off-by: Lagrang3 <lagrang3@protonmail.com>
36 lines
1.2 KiB
Makefile
36 lines
1.2 KiB
Makefile
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 \
|
|
plugins/askrene/priorityqueue.c \
|
|
plugins/askrene/algorithm.c
|
|
|
|
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 \
|
|
plugins/askrene/priorityqueue.h \
|
|
plugins/askrene/algorithm.h
|
|
|
|
PLUGIN_ASKRENE_OBJS := $(PLUGIN_ASKRENE_SRC:.c=.o)
|
|
|
|
$(PLUGIN_ASKRENE_OBJS): $(PLUGIN_ASKRENE_HEADER)
|
|
|
|
PLUGIN_ALL_SRC += $(PLUGIN_ASKRENE_SRC)
|
|
PLUGIN_ALL_HEADER += $(PLUGIN_ASKRENE_HEADER)
|
|
|
|
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
|
|
|
|
include plugins/askrene/test/Makefile
|