2017-07-04 10:19:43 +09:30
|
|
|
#! /usr/bin/make
|
|
|
|
|
2020-08-31 10:43:25 +09:30
|
|
|
CLOSINGD_HEADERS := closingd/closingd_wiregen.h
|
2017-07-04 10:19:43 +09:30
|
|
|
|
2020-08-31 10:43:25 +09:30
|
|
|
CLOSINGD_SRC := closingd/closingd.c \
|
|
|
|
$(CLOSINGD_HEADERS:.h=.c)
|
2017-07-04 10:19:43 +09:30
|
|
|
|
2020-08-31 10:43:25 +09:30
|
|
|
CLOSINGD_OBJS := $(CLOSINGD_SRC:.c=.o)
|
|
|
|
$(CLOSINGD_OBJS): $(CLOSINGD_HEADERS)
|
2017-07-04 10:19:43 +09:30
|
|
|
|
2017-08-29 01:43:01 +09:30
|
|
|
# Make sure these depend on everything.
|
2020-08-31 10:43:25 +09:30
|
|
|
ALL_C_SOURCES += $(CLOSINGD_SRC)
|
|
|
|
ALL_C_HEADERS += $(CLOSINGD_HEADERS)
|
2017-08-29 13:42:04 +09:30
|
|
|
ALL_PROGRAMS += lightningd/lightning_closingd
|
2017-07-04 10:19:43 +09:30
|
|
|
|
2020-08-31 10:43:25 +09:30
|
|
|
# Here's what lightningd depends on
|
|
|
|
LIGHTNINGD_CONTROL_HEADERS += closingd/closingd_wiregen.h
|
|
|
|
LIGHTNINGD_CONTROL_OBJS += closingd/closingd_wiregen.o
|
2017-07-04 10:19:43 +09:30
|
|
|
|
2017-08-29 01:32:01 +09:30
|
|
|
# Common source we use.
|
|
|
|
CLOSINGD_COMMON_OBJS := \
|
2019-02-20 22:01:48 +10:30
|
|
|
common/amount.o \
|
2021-09-21 16:53:10 +09:30
|
|
|
common/autodata.o \
|
2018-05-10 08:48:19 +09:30
|
|
|
common/base32.o \
|
2019-07-30 14:55:12 +09:30
|
|
|
common/bigsize.o \
|
2018-07-23 11:53:03 +09:30
|
|
|
common/bip32.o \
|
2020-05-15 19:59:53 +09:30
|
|
|
common/channel_id.o \
|
2017-08-29 01:32:01 +09:30
|
|
|
common/close_tx.o \
|
2017-10-11 20:26:50 +10:30
|
|
|
common/crypto_state.o \
|
2017-08-29 01:35:01 +09:30
|
|
|
common/crypto_sync.o \
|
|
|
|
common/cryptomsg.o \
|
2018-03-29 12:36:45 +10:30
|
|
|
common/daemon.o \
|
2017-08-29 01:35:01 +09:30
|
|
|
common/daemon_conn.o \
|
|
|
|
common/dev_disconnect.o \
|
2017-08-29 01:32:01 +09:30
|
|
|
common/derive_basepoints.o \
|
2020-08-25 11:49:38 +09:30
|
|
|
common/peer_status_wiregen.o \
|
|
|
|
common/status_wiregen.o \
|
2019-09-06 15:39:36 +09:30
|
|
|
common/gossip_rcvd_filter.o \
|
2019-05-06 11:30:06 +09:30
|
|
|
common/gossip_store.o \
|
2017-08-29 01:35:01 +09:30
|
|
|
common/htlc_wire.o \
|
2018-12-03 09:32:11 +10:30
|
|
|
common/key_derive.o \
|
2017-12-15 20:52:57 +10:30
|
|
|
common/memleak.o \
|
2017-08-29 01:35:01 +09:30
|
|
|
common/msg_queue.o \
|
2020-05-16 10:59:05 +09:30
|
|
|
common/node_id.o \
|
2020-01-23 10:08:04 +10:30
|
|
|
common/onionreply.o \
|
2018-02-23 16:23:47 +10:30
|
|
|
common/peer_billboard.o \
|
2017-09-12 14:25:52 +09:30
|
|
|
common/peer_failed.o \
|
2019-06-04 03:41:25 +09:30
|
|
|
common/per_peer_state.o \
|
2017-08-29 01:32:01 +09:30
|
|
|
common/permute_tx.o \
|
2021-10-07 23:23:18 +10:30
|
|
|
common/ping.o \
|
2020-10-08 16:40:25 -05:00
|
|
|
common/psbt_open.o \
|
2019-09-06 15:39:36 +09:30
|
|
|
common/pseudorand.o \
|
2018-01-31 13:23:42 +10:30
|
|
|
common/read_peer_msg.o \
|
2020-05-15 17:13:22 -05:00
|
|
|
common/setup.o \
|
2018-05-05 04:57:58 +00:00
|
|
|
common/socket_close.o \
|
2017-08-29 01:35:01 +09:30
|
|
|
common/status.o \
|
2018-02-08 11:55:12 +10:30
|
|
|
common/status_wire.o \
|
2018-01-08 20:31:09 +10:30
|
|
|
common/subdaemon.o \
|
2017-08-29 01:32:01 +09:30
|
|
|
common/type_to_string.o \
|
|
|
|
common/utils.o \
|
2018-07-23 11:53:03 +09:30
|
|
|
common/utxo.o \
|
2018-01-10 15:16:54 +10:30
|
|
|
common/version.o \
|
2018-04-26 14:21:01 +09:30
|
|
|
common/wire_error.o \
|
|
|
|
common/wireaddr.o \
|
2021-05-22 16:39:53 +09:30
|
|
|
gossipd/gossip_store_wiregen.o \
|
2020-08-25 11:35:45 +09:30
|
|
|
gossipd/gossipd_peerd_wiregen.o
|
2017-08-29 01:32:01 +09:30
|
|
|
|
2020-08-31 10:43:25 +09:30
|
|
|
lightningd/lightning_closingd: $(CLOSINGD_OBJS) $(WIRE_ONION_OBJS) $(CLOSINGD_COMMON_OBJS) $(WIRE_OBJS) $(BITCOIN_OBJS) $(HSMD_CLIENT_OBJS)
|
2017-07-04 10:19:43 +09:30
|
|
|
|
2017-12-10 13:41:10 +01:00
|
|
|
-include closingd/test/Makefile
|