aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 655bfc88c..94a582dfa 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -98,7 +98,11 @@ BITCOIN_CORE_H = \
rpcclient.h \
rpcprotocol.h \
rpcserver.h \
- script.h \
+ script/compressor.h \
+ script/interpreter.h \
+ script/script.h \
+ script/sign.h \
+ script/standard.h \
serialize.h \
sync.h \
threadsafety.h \
@@ -113,8 +117,9 @@ BITCOIN_CORE_H = \
utilmoneystr.h \
utiltime.h \
version.h \
- walletdb.h \
wallet.h \
+ wallet_ismine.h \
+ walletdb.h \
compat/sanity.h
JSON_H = \
@@ -135,7 +140,7 @@ obj/build.h: FORCE
libbitcoin_util_a-version.$(OBJEXT): obj/build.h
# server: shared between bitcoind and bitcoin-qt
-libbitcoin_server_a_CPPFLAGS = $(BITCOIN_INCLUDES)
+libbitcoin_server_a_CPPFLAGS = $(BITCOIN_INCLUDES) $(MINIUPNPC_CPPFLAGS)
libbitcoin_server_a_SOURCES = \
addrman.cpp \
alert.cpp \
@@ -169,6 +174,7 @@ libbitcoin_wallet_a_SOURCES = \
rpcdump.cpp \
rpcwallet.cpp \
wallet.cpp \
+ wallet_ismine.cpp \
walletdb.cpp \
$(BITCOIN_CORE_H)
@@ -206,7 +212,11 @@ libbitcoin_common_a_SOURCES = \
keystore.cpp \
netbase.cpp \
protocol.cpp \
- script.cpp \
+ script/compressor.cpp \
+ script/interpreter.cpp \
+ script/script.cpp \
+ script/sign.cpp \
+ script/standard.cpp \
$(BITCOIN_CORE_H)
# util: shared between all executables.