mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
220449e1cd
These are generalized from our internal implementations. The main difference is that 'struct json_escaped' is now 'struct json_escape', so we replace that immediately. The difference between lightningd's json-writing ringbuffer and the more generic ccan/json_out is that the latter has a better API and handles escaping transparently if something slips through (though it does offer direct accessors so you can mess things up yourself!). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
31 lines
825 B
Makefile
31 lines
825 B
Makefile
LIGHTNING_CLI_SRC := cli/lightning-cli.c
|
|
LIGHTNING_CLI_OBJS := $(LIGHTNING_CLI_SRC:.c=.o)
|
|
|
|
LIGHTNING_CLI_COMMON_OBJS := \
|
|
common/configdir.o \
|
|
common/json.o \
|
|
common/memleak.o \
|
|
common/utils.o \
|
|
common/version.o
|
|
|
|
lightning-cli-all: cli/lightning-cli
|
|
|
|
$(LIGHTNINGD_OPENING_OBJS): $(LIGHTNINGD_HEADERS) $(EXTERNAL_HEADERS)
|
|
|
|
$(LIGHTNING_CLI_OBJS) $(JSMN_OBJS): $(JSMN_HEADERS) $(COMMON_HEADERS) $(CCAN_HEADERS)
|
|
|
|
cli/lightning-cli: $(LIGHTNING_CLI_OBJS) $(LIGHTNING_CLI_COMMON_OBJS) $(JSMN_OBJS) $(CCAN_OBJS)
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_PROGRAMS += cli/lightning-cli
|
|
ALL_OBJS += $(LIGHTNING_CLI_OBJS)
|
|
|
|
check-source: $(LIGHTNING_CLI_SRC:%=check-src-include-order/%)
|
|
|
|
clean: lightning-cli-clean
|
|
|
|
lightning-cli-clean:
|
|
$(RM) $(LIGHTNING-CLI_LIB_OBJS) $(DAEMON_JSMN_OBJS)
|
|
|
|
include cli/test/Makefile
|