mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
fbe50e087a
Since we now over-write the wally malloc/free functions, we need to do so for tests as well. Here we pull up all of the common setup/teardown logic into a separate place, and update the tests that use libwally to use the new common_setup core Changelog-None
73 lines
2.1 KiB
Makefile
73 lines
2.1 KiB
Makefile
#! /usr/bin/make
|
|
|
|
# Designed to be run one level up
|
|
hsmd-wrongdir:
|
|
$(MAKE) -C .. lightningd/hsm-all
|
|
|
|
default: hsmd-all
|
|
|
|
LIGHTNINGD_HSM_SRC := hsmd/hsmd.c \
|
|
hsmd/gen_hsm_wire.c
|
|
LIGHTNINGD_HSM_HEADERS := hsmd/gen_hsm_wire.h
|
|
LIGHTNINGD_HSM_OBJS := $(LIGHTNINGD_HSM_SRC:.c=.o)
|
|
|
|
# Common source we use.
|
|
HSMD_COMMON_OBJS := \
|
|
common/amount.o \
|
|
common/bigsize.o \
|
|
common/bip32.o \
|
|
common/channel_id.o \
|
|
common/daemon.o \
|
|
common/daemon_conn.o \
|
|
common/derive_basepoints.o \
|
|
common/funding_tx.o \
|
|
common/gen_status_wire.o \
|
|
common/hash_u5.o \
|
|
common/key_derive.o \
|
|
common/memleak.o \
|
|
common/msg_queue.o \
|
|
common/node_id.o \
|
|
common/permute_tx.o \
|
|
common/setup.o \
|
|
common/status.o \
|
|
common/status_wire.o \
|
|
common/subdaemon.o \
|
|
common/type_to_string.o \
|
|
common/utils.o \
|
|
common/utxo.o \
|
|
common/version.o \
|
|
common/withdraw_tx.o
|
|
|
|
# For checking
|
|
LIGHTNINGD_HSM_ALLSRC_NOGEN := $(filter-out hsmd/gen_%, $(LIGHTNINGD_HSM_SRC) $(LIGHTNINGD_HSM_SRC))
|
|
LIGHTNINGD_HSM_ALLHEADERS_NOGEN := $(filter-out hsmd/gen_%, $(LIGHTNINGD_HSM_HEADERS))
|
|
|
|
$(LIGHTNINGD_HSM_OBJS): $(LIGHTNINGD_HEADERS)
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_OBJS += $(LIGHTNINGD_HSM_OBJS)
|
|
ALL_PROGRAMS += lightningd/lightning_hsmd
|
|
ALL_GEN_HEADERS += hsmd/gen_hsm_wire.h
|
|
|
|
hsmd-all: lightningd/lightning_hsmd
|
|
|
|
lightningd/lightning_hsmd: $(LIGHTNINGD_HSM_OBJS) $(LIGHTNINGD_LIB_OBJS) $(HSMD_COMMON_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS)
|
|
|
|
hsmd/gen_hsm_wire.h: $(WIRE_GEN) hsmd/hsm_wire.csv
|
|
$(WIRE_GEN) --page header $@ hsm_wire_type < hsmd/hsm_wire.csv > $@
|
|
|
|
hsmd/gen_hsm_wire.c: $(WIRE_GEN) hsmd/hsm_wire.csv
|
|
$(WIRE_GEN) --page impl ${@:.c=.h} hsm_wire_type < hsmd/hsm_wire.csv > $@
|
|
|
|
check-source: $(LIGHTNINGD_HSM_ALLSRC_NOGEN:%=check-src-include-order/%) $(LIGHTNINGD_HSM_ALLHEADERS_NOGEN:%=check-hdr-include-order/%)
|
|
check-source-bolt: $(LIGHTNINGD_HSM_SRC:%=bolt-check/%)
|
|
|
|
check-whitespace: $(LIGHTNINGD_HSM_ALLSRC_NOGEN:%=check-whitespace/%) $(LIGHTNINGD_HSM_ALLHEADERS_NOGEN:%=check-whitespace/%)
|
|
|
|
clean: lightningd/hsm-clean
|
|
|
|
lightningd/hsm-clean:
|
|
$(RM) $(LIGHTNINGD_HSM_OBJS) hsmd/gen_*
|
|
|
|
-include hsmd/test/Makefile
|