diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-06-06 10:57:28 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-07-01 12:27:19 -0400 |
commit | 556682663547f9a9ede69fc4f924b50c531d92b3 (patch) | |
tree | 207c043f9f47b76d921ba973222bbb743663ad7e /src/Makefile.test.include | |
parent | b150b09edcd3b6b7ca5f26ca6ebee92bbad97089 (diff) |
secp256k1: Add build-side changes for libsecp256k1
Note: This is added to our existing automake targets rather than as a
libtool-style lib. The switch to libtool-style targets can come later if it
proves to not add any complications.
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 8685452c7b..12b90adca3 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -69,6 +69,11 @@ test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_CO if ENABLE_WALLET test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET) endif + +if USE_LIBSECP256K1 + test_test_bitcoin_LDADD += secp256k1/libsecp256k1.la +endif + test_test_bitcoin_LDADD += $(BDB_LIBS) nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES) |