You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
688 B
15 lines
688 B
include_HEADERS += include/secp256k1_rangeproof.h
|
|
noinst_HEADERS += src/modules/rangeproof/main_impl.h
|
|
noinst_HEADERS += src/modules/rangeproof/pedersen.h
|
|
noinst_HEADERS += src/modules/rangeproof/pedersen_impl.h
|
|
noinst_HEADERS += src/modules/rangeproof/borromean.h
|
|
noinst_HEADERS += src/modules/rangeproof/borromean_impl.h
|
|
noinst_HEADERS += src/modules/rangeproof/rangeproof.h
|
|
noinst_HEADERS += src/modules/rangeproof/rangeproof_impl.h
|
|
noinst_HEADERS += src/modules/rangeproof/tests_impl.h
|
|
if USE_BENCHMARK
|
|
noinst_PROGRAMS += bench_rangeproof
|
|
bench_rangeproof_SOURCES = src/bench_rangeproof.c
|
|
bench_rangeproof_LDADD = libsecp256k1.la $(SECP_LIBS)
|
|
bench_rangeproof_LDFLAGS = -static
|
|
endif
|
|
|