2014-11-06 09:55:27 -03:00
|
|
|
ACLOCAL_AMFLAGS = -I build-aux/m4
|
2014-11-06 06:35:41 -03:00
|
|
|
|
2014-01-18 00:52:33 -03:00
|
|
|
lib_LTLIBRARIES = libsecp256k1.la
|
|
|
|
include_HEADERS = include/secp256k1.h
|
|
|
|
noinst_HEADERS =
|
2014-10-28 08:08:15 -03:00
|
|
|
noinst_HEADERS += src/scalar.h
|
2014-10-29 04:35:49 -03:00
|
|
|
noinst_HEADERS += src/scalar_4x64.h
|
|
|
|
noinst_HEADERS += src/scalar_8x32.h
|
2014-10-28 08:08:15 -03:00
|
|
|
noinst_HEADERS += src/scalar_impl.h
|
2014-10-29 04:35:49 -03:00
|
|
|
noinst_HEADERS += src/scalar_4x64_impl.h
|
|
|
|
noinst_HEADERS += src/scalar_8x32_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/group.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/group_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/num_gmp.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/num_gmp_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/ecdsa.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/ecdsa_impl.h
|
2014-10-27 06:57:27 -03:00
|
|
|
noinst_HEADERS += src/eckey.h
|
|
|
|
noinst_HEADERS += src/eckey_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/ecmult.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/ecmult_impl.h
|
2014-10-26 07:42:24 -03:00
|
|
|
noinst_HEADERS += src/ecmult_gen.h
|
|
|
|
noinst_HEADERS += src/ecmult_gen_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/num.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/num_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/field_10x26.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/field_10x26_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/field_5x52.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/field_5x52_impl.h
|
|
|
|
noinst_HEADERS += src/field_5x52_int128_impl.h
|
|
|
|
noinst_HEADERS += src/field_5x52_asm_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/java/org_bitcoin_NativeSecp256k1.h
|
|
|
|
noinst_HEADERS += src/util.h
|
2014-11-12 20:59:26 -03:00
|
|
|
noinst_HEADERS += src/testrand.h
|
|
|
|
noinst_HEADERS += src/testrand_impl.h
|
2014-12-13 14:06:33 -03:00
|
|
|
noinst_HEADERS += src/hash.h
|
|
|
|
noinst_HEADERS += src/hash_impl.h
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_HEADERS += src/field.h
|
2014-03-06 21:11:01 -03:00
|
|
|
noinst_HEADERS += src/field_impl.h
|
2014-12-04 16:26:54 -03:00
|
|
|
noinst_HEADERS += src/bench.h
|
2014-01-18 00:52:33 -03:00
|
|
|
|
2014-05-20 20:59:11 -04:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2014-05-07 02:10:08 -04:00
|
|
|
pkgconfig_DATA = libsecp256k1.pc
|
|
|
|
|
2014-08-19 07:39:58 -04:00
|
|
|
libsecp256k1_la_SOURCES = src/secp256k1.c
|
|
|
|
libsecp256k1_la_CPPFLAGS = -I$(top_srcdir)/include $(SECP_INCLUDES)
|
2014-12-02 13:47:32 -03:00
|
|
|
libsecp256k1_la_LIBADD = $(SECP_LIBS)
|
2014-10-25 23:40:55 -03:00
|
|
|
|
2014-08-19 07:39:58 -04:00
|
|
|
|
2014-01-18 00:52:33 -03:00
|
|
|
noinst_PROGRAMS =
|
|
|
|
if USE_BENCHMARK
|
2015-01-31 17:12:10 -03:00
|
|
|
noinst_PROGRAMS += bench_verify bench_recover bench_sign bench_internal
|
2014-10-31 07:17:44 -03:00
|
|
|
bench_verify_SOURCES = src/bench_verify.c
|
|
|
|
bench_verify_LDADD = libsecp256k1.la $(SECP_LIBS)
|
|
|
|
bench_verify_LDFLAGS = -static
|
2014-12-04 15:38:52 -03:00
|
|
|
bench_recover_SOURCES = src/bench_recover.c
|
|
|
|
bench_recover_LDADD = libsecp256k1.la $(SECP_LIBS)
|
|
|
|
bench_recover_LDFLAGS = -static
|
2014-10-31 12:23:34 -03:00
|
|
|
bench_sign_SOURCES = src/bench_sign.c
|
|
|
|
bench_sign_LDADD = libsecp256k1.la $(SECP_LIBS)
|
|
|
|
bench_sign_LDFLAGS = -static
|
2015-01-31 17:12:10 -03:00
|
|
|
bench_internal_SOURCES = src/bench_internal.c
|
|
|
|
bench_internal_LDADD = $(SECP_LIBS)
|
|
|
|
bench_internal_LDFLAGS = -static
|
|
|
|
bench_internal_CPPFLAGS = $(SECP_INCLUDES)
|
2014-01-18 00:52:33 -03:00
|
|
|
endif
|
|
|
|
|
|
|
|
if USE_TESTS
|
|
|
|
noinst_PROGRAMS += tests
|
|
|
|
tests_SOURCES = src/tests.c
|
2014-11-24 13:13:16 -03:00
|
|
|
tests_CPPFLAGS = -DVERIFY $(SECP_INCLUDES) $(SECP_TEST_INCLUDES)
|
2014-12-02 13:47:32 -03:00
|
|
|
tests_LDADD = $(SECP_LIBS) $(SECP_TEST_LIBS)
|
2014-01-18 00:52:33 -03:00
|
|
|
tests_LDFLAGS = -static
|
|
|
|
TESTS = tests
|
|
|
|
endif
|
|
|
|
|
2014-12-02 13:47:32 -03:00
|
|
|
EXTRA_DIST = autogen.sh
|