mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
1746406e41
We create ALL_PROGRAMS, ALL_TEST_PROGRAMS, ALL_C_SOURCES and ALL_C_HEADERS. Then the toplevel Makefile knows which are autogenerated (by wildcard), so it can have all the rules to clean them or check the source as necessary. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
29 lines
868 B
Makefile
29 lines
868 B
Makefile
# Note that these actually #include everything they need, except ccan/ and bitcoin/.
|
|
# That allows for unit testing of statics, and special effects.
|
|
CLI_TEST_SRC := $(wildcard cli/test/run-*.c)
|
|
CLI_TEST_OBJS := $(CLI_TEST_SRC:.c=.o)
|
|
CLI_TEST_PROGRAMS := $(CLI_TEST_OBJS:.o=)
|
|
|
|
ALL_C_SOURCES += $(CLI_TEST_SRC)
|
|
ALL_TEST_PROGRAMS += $(CLI_TEST_PROGRAMS)
|
|
|
|
CLI_TEST_COMMON_OBJS := \
|
|
common/configdir.o \
|
|
common/daemon_conn.o \
|
|
common/htlc_state.o \
|
|
common/json.o \
|
|
common/pseudorand.o \
|
|
common/memleak.o \
|
|
common/msg_queue.o \
|
|
common/utils.o \
|
|
common/type_to_string.o \
|
|
common/permute_tx.o
|
|
|
|
update-mocks: $(CLI_TEST_SRC:%=update-mocks/%)
|
|
|
|
$(CLI_TEST_PROGRAMS): $(CCAN_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(CLI_TEST_COMMON_OBJS)
|
|
|
|
$(CLI_TEST_OBJS): $(LIGHTNING_CLI_HEADERS) $(LIGHTNING_CLI_SRC)
|
|
|
|
check-units: $(CLI_TEST_PROGRAMS:%=unittest/%)
|