mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-26 18:34:39 +01:00
Transaction filters are strongly related to the wallet, this move just makes it a bit more explicit. Signed-off-by: Christian Decker <decker.christian@gmail.com>
25 lines
502 B
Makefile
25 lines
502 B
Makefile
#! /usr/bin/make
|
|
|
|
# Designed to be run one level up
|
|
wallet-wrongdir:
|
|
$(MAKE) -C .. lightningd-all
|
|
|
|
WALLET_LIB_SRC := \
|
|
wallet/db.c \
|
|
wallet/invoices.c \
|
|
wallet/txfilter.c \
|
|
wallet/wallet.c \
|
|
wallet/walletrpc.c
|
|
|
|
WALLET_LIB_OBJS := $(WALLET_LIB_SRC:.c=.o)
|
|
WALLET_LIB_HEADERS := $(WALLET_LIB_SRC:.c=.h)
|
|
|
|
check-whitespace: $(WALLET_LIB_SRC:%=check-whitespace/%) $(WALLET_LIB_HEADERS:%=check-whitespace/%)
|
|
|
|
clean: wallet-clean
|
|
|
|
wallet-clean:
|
|
$(RM) $(WALLET_LIB_OBJS)
|
|
|
|
include wallet/test/Makefile
|