mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-05 22:48:36 +00:00
- Use defined constants instead of hard-coding their integer value. - Allocate secp256k1 structs on the C stack instead of converting []byte - Remove dead code
8 lines
292 B
Makefile
8 lines
292 B
Makefile
include_HEADERS += include/secp256k1_ecdh.h
|
|
noinst_HEADERS += src/modules/ecdh/main_impl.h
|
|
noinst_HEADERS += src/modules/ecdh/tests_impl.h
|
|
if USE_BENCHMARK
|
|
noinst_PROGRAMS += bench_ecdh
|
|
bench_ecdh_SOURCES = src/bench_ecdh.c
|
|
bench_ecdh_LDADD = libsecp256k1.la $(SECP_LIBS) $(COMMON_LIB)
|
|
endif
|