mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
a8177e9013
Note that check-whitespace and check-bolt already do this, so we can eliminate redundant lines in common/Makefile and bitcoin/Makefile. We also include the plugin headers in ALL_C_HEADERS so they get checked. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# Included for one dir up.
|
|
|
|
BITCOIN_SRC := \
|
|
bitcoin/base58.c \
|
|
bitcoin/block.c \
|
|
bitcoin/chainparams.c \
|
|
bitcoin/feerate.c \
|
|
bitcoin/locktime.c \
|
|
bitcoin/preimage.c \
|
|
bitcoin/privkey.c \
|
|
bitcoin/psbt.c \
|
|
bitcoin/pubkey.c \
|
|
bitcoin/script.c \
|
|
bitcoin/shadouble.c \
|
|
bitcoin/short_channel_id.c \
|
|
bitcoin/signature.c \
|
|
bitcoin/tx.c \
|
|
bitcoin/tx_parts.c \
|
|
bitcoin/varint.c
|
|
|
|
BITCOIN_OBJS := $(BITCOIN_SRC:.c=.o)
|
|
|
|
BITCOIN_HEADERS := bitcoin/address.h \
|
|
bitcoin/base58.h \
|
|
bitcoin/block.h \
|
|
bitcoin/chainparams.h \
|
|
bitcoin/feerate.h \
|
|
bitcoin/locktime.h \
|
|
bitcoin/preimage.h \
|
|
bitcoin/privkey.h \
|
|
bitcoin/psbt.h \
|
|
bitcoin/pubkey.h \
|
|
bitcoin/script.h \
|
|
bitcoin/shadouble.h \
|
|
bitcoin/short_channel_id.h \
|
|
bitcoin/signature.h \
|
|
bitcoin/tx.h \
|
|
bitcoin/tx_parts.h \
|
|
bitcoin/varint.h
|
|
|
|
# Bitcoin objects depends on bitcoin/ external/ and ccan
|
|
$(BITCOIN_OBJS): $(CCAN_HEADERS) $(BITCOIN_HEADERS) $(EXTERNAL_HEADERS)
|
|
|
|
check-makefile: check-bitcoin-makefile
|
|
|
|
check-bitcoin-makefile:
|
|
@if [ "`echo bitcoin/*.h`" != "$(BITCOIN_HEADERS)" ]; then echo BITCOIN_HEADERS incorrect; exit 1; fi
|
|
|
|
check-whitespace: check-whitespace/bitcoin/Makefile
|
|
|
|
clean: bitcoin-clean
|
|
|
|
bitcoin-clean:
|
|
$(RM) $(BITCOIN_OBJS) $(BITCOIN_TEST_PROGRAMS) $(BITCOIN_TEST_OBJS)
|
|
|
|
include bitcoin/test/Makefile
|