mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 15:19:07 +01:00
Libtool will do the right thing and use whatever is available based on --enable-shared/--enable-static. This also means that some of the things we build actually test the dynamic library.
9 lines
302 B
Makefile
9 lines
302 B
Makefile
include_HEADERS += include/secp256k1_recovery.h
|
|
noinst_HEADERS += src/modules/recovery/main_impl.h
|
|
noinst_HEADERS += src/modules/recovery/tests_impl.h
|
|
if USE_BENCHMARK
|
|
noinst_PROGRAMS += bench_recover
|
|
bench_recover_SOURCES = src/bench_recover.c
|
|
bench_recover_LDADD = libsecp256k1.la $(SECP_LIBS)
|
|
endif
|