mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
run-channel.c: move under channeld/
This also fixes dependencies, since it actually depends on channeld objects. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
593d0fa625
commit
37b4ab306e
24
channeld/test/Makefile
Normal file
24
channeld/test/Makefile
Normal file
@ -0,0 +1,24 @@
|
||||
# Note that these actually #include everything they need, except ccan/ and bitcoin/.
|
||||
# That allows for unit testing of statics, and special effects.
|
||||
CHANNELD_TEST_SRC := $(wildcard channeld/test/run-*.c)
|
||||
CHANNELD_TEST_OBJS := $(CHANNELD_TEST_SRC:.c=.o)
|
||||
CHANNELD_TEST_PROGRAMS := $(CHANNELD_TEST_OBJS:.o=)
|
||||
|
||||
ALL_TEST_PROGRAMS += $(CHANNELD_TEST_PROGRAMS)
|
||||
|
||||
CHANNELD_TEST_COMMON_OBJS := \
|
||||
common/daemon_conn.o \
|
||||
common/htlc_state.o \
|
||||
common/pseudorand.o \
|
||||
common/msg_queue.o \
|
||||
common/utils.o \
|
||||
common/type_to_string.o \
|
||||
common/permute_tx.o
|
||||
|
||||
update-mocks: $(CHANNELD_TEST_SRC:%=update-mocks/%)
|
||||
|
||||
$(CHANNELD_TEST_PROGRAMS): $(CCAN_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(LIBBASE58_OBJS) $(CHANNELD_TEST_COMMON_OBJS)
|
||||
|
||||
$(CHANNELD_TEST_OBJS): $(CHANNELD_HEADERS) $(CHANNELD_SRC)
|
||||
|
||||
check: $(CHANNELD_TEST_PROGRAMS:%=unittest/%)
|
Loading…
Reference in New Issue
Block a user