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