mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
bkpr: add bookkeeper to PLUGINS list
This makes it start up automatically
This commit is contained in:
parent
dc113d0a3f
commit
351dc17e46
@ -108,11 +108,6 @@ plugins/cln-grpc: target/${RUST_PROFILE}/cln-grpc
|
||||
PLUGINS += plugins/cln-grpc
|
||||
endif
|
||||
|
||||
# Make sure these depend on everything.
|
||||
ALL_C_SOURCES += $(PLUGIN_ALL_SRC)
|
||||
ALL_C_HEADERS += $(PLUGIN_ALL_HEADER)
|
||||
ALL_PROGRAMS += $(C_PLUGINS)
|
||||
|
||||
PLUGIN_COMMON_OBJS := \
|
||||
bitcoin/base58.o \
|
||||
bitcoin/block.o \
|
||||
@ -165,6 +160,11 @@ PLUGIN_COMMON_OBJS := \
|
||||
|
||||
include plugins/bkpr/Makefile
|
||||
|
||||
# Make sure these depend on everything.
|
||||
ALL_C_SOURCES += $(PLUGIN_ALL_SRC)
|
||||
ALL_C_HEADERS += $(PLUGIN_ALL_HEADER)
|
||||
ALL_PROGRAMS += $(C_PLUGINS)
|
||||
|
||||
# Make all plugins depend on all plugin headers, for simplicity.
|
||||
$(PLUGIN_ALL_OBJS): $(PLUGIN_ALL_HEADER)
|
||||
|
||||
|
@ -23,9 +23,10 @@ BOOKKEEPER_OBJS := $(BOOKKEEPER_SRC:.c=.o)
|
||||
|
||||
$(BOOKKEEPER_OBJS): $(PLUGIN_LIB_HEADER) $(BOOKKEEPER_HEADER)
|
||||
|
||||
ALL_C_SOURCES += $(BOOKKEEPER_SRC)
|
||||
ALL_C_HEADERS += $(BOOKKEEPER_HEADER)
|
||||
ALL_PROGRAMS += plugins/bookkeeper
|
||||
PLUGIN_ALL_SRC += $(BOOKKEEPER_SRC) $(BOOKKEEPER_DB_QUERIES)
|
||||
PLUGIN_ALL_HEADER += $(BOOKKEEPER_HEADER)
|
||||
C_PLUGINS += plugins/bookkeeper
|
||||
PLUGINS += plugins/bookkeeper
|
||||
|
||||
plugins/bookkeeper: bitcoin/chainparams.o common/coin_mvt.o $(BOOKKEEPER_OBJS) $(PLUGIN_LIB_OBJS) $(JSMN_OBJTS) $(PLUGIN_COMMON_OBJS) $(WIRE_OBJS) $(DB_OBJS)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user