mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
e0e879c003
This means including <common/utils.h> where it was indirectly included. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
#! /usr/bin/make
|
|
|
|
HSMD_SRC := hsmd/hsmd.c \
|
|
hsmd/hsmd_wiregen.c \
|
|
hsmd/libhsmd.c
|
|
|
|
HSMD_HEADERS := hsmd/hsmd_wiregen.h hsmd/permissions.h
|
|
HSMD_OBJS := $(HSMD_SRC:.c=.o)
|
|
|
|
$(HSMD_OBJS): $(HSMD_HEADERS)
|
|
|
|
# Other programs which use the hsm need this.
|
|
HSMD_CLIENT_OBJS := \
|
|
hsmd/hsmd_wiregen.o \
|
|
common/htlc_wire.o
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_C_SOURCES += $(HSMD_SRC)
|
|
ALL_C_HEADERS += $(HSMD_HEADERS)
|
|
ALL_PROGRAMS += lightningd/lightning_hsmd
|
|
|
|
# Common source we use.
|
|
HSMD_COMMON_OBJS := \
|
|
common/amount.o \
|
|
common/autodata.o \
|
|
common/base32.o \
|
|
common/bigsize.o \
|
|
common/bip32.o \
|
|
common/bolt12_merkle.o \
|
|
common/channel_id.o \
|
|
common/daemon.o \
|
|
common/daemon_conn.o \
|
|
common/derive_basepoints.o \
|
|
common/hash_u5.o \
|
|
common/hsm_encryption.o \
|
|
common/htlc_wire.o \
|
|
common/key_derive.o \
|
|
common/lease_rates.o \
|
|
common/memleak.o \
|
|
common/msg_queue.o \
|
|
common/node_id.o \
|
|
common/onionreply.o \
|
|
common/permute_tx.o \
|
|
common/psbt_open.o \
|
|
common/pseudorand.o \
|
|
common/setup.o \
|
|
common/status.o \
|
|
common/status_wire.o \
|
|
common/status_wiregen.o \
|
|
common/subdaemon.o \
|
|
common/utils.o \
|
|
common/utxo.o \
|
|
common/version.o \
|
|
common/wireaddr.o
|
|
|
|
lightningd/lightning_hsmd: $(HSMD_OBJS) $(HSMD_COMMON_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS)
|
|
|
|
check-source: check-hsm-versions
|
|
|
|
# common/hsm_version.h should at least *mention* this!
|
|
check-hsm-versions: hsmd/hsmd_wire.csv common/hsm_version.h
|
|
@SUM=`grep -vE '^(#| *$$)' hsmd/hsmd_wire.csv | sha256sum | cut -c1-64`; if ! grep -q "$$SUM" common/hsm_version.h; then echo "*** hsmd_wire.csv changed to $$SUM without update to common/hsm_version.h">&2; exit 1; fi
|
|
|
|
-include hsmd/test/Makefile
|