]>
Commit | Line | Data |
---|---|---|
6fac238f | 1 | ACLOCAL_AMFLAGS = -I build-aux/m4 |
f9aac5b0 | 2 | |
78cd96b1 | 3 | lib_LTLIBRARIES = libsecp256k1.la |
78cd96b1 CF |
4 | include_HEADERS = include/secp256k1.h |
5 | noinst_HEADERS = | |
a9f5c8b8 | 6 | noinst_HEADERS += src/scalar.h |
1d52a8b1 PW |
7 | noinst_HEADERS += src/scalar_4x64.h |
8 | noinst_HEADERS += src/scalar_8x32.h | |
a9f5c8b8 | 9 | noinst_HEADERS += src/scalar_impl.h |
1d52a8b1 PW |
10 | noinst_HEADERS += src/scalar_4x64_impl.h |
11 | noinst_HEADERS += src/scalar_8x32_impl.h | |
78cd96b1 | 12 | noinst_HEADERS += src/group.h |
11ab5622 | 13 | noinst_HEADERS += src/group_impl.h |
78cd96b1 | 14 | noinst_HEADERS += src/num_gmp.h |
11ab5622 | 15 | noinst_HEADERS += src/num_gmp_impl.h |
78cd96b1 | 16 | noinst_HEADERS += src/ecdsa.h |
11ab5622 | 17 | noinst_HEADERS += src/ecdsa_impl.h |
e2f71f1e PW |
18 | noinst_HEADERS += src/eckey.h |
19 | noinst_HEADERS += src/eckey_impl.h | |
78cd96b1 | 20 | noinst_HEADERS += src/ecmult.h |
11ab5622 | 21 | noinst_HEADERS += src/ecmult_impl.h |
949c1ebb PW |
22 | noinst_HEADERS += src/ecmult_gen.h |
23 | noinst_HEADERS += src/ecmult_gen_impl.h | |
78cd96b1 | 24 | noinst_HEADERS += src/num.h |
11ab5622 | 25 | noinst_HEADERS += src/num_impl.h |
78cd96b1 | 26 | noinst_HEADERS += src/field_10x26.h |
11ab5622 | 27 | noinst_HEADERS += src/field_10x26_impl.h |
78cd96b1 | 28 | noinst_HEADERS += src/field_5x52.h |
11ab5622 PW |
29 | noinst_HEADERS += src/field_5x52_impl.h |
30 | noinst_HEADERS += src/field_5x52_int128_impl.h | |
31 | noinst_HEADERS += src/field_5x52_asm_impl.h | |
78cd96b1 CF |
32 | noinst_HEADERS += src/java/org_bitcoin_NativeSecp256k1.h |
33 | noinst_HEADERS += src/util.h | |
861f9a59 GM |
34 | noinst_HEADERS += src/testrand.h |
35 | noinst_HEADERS += src/testrand_impl.h | |
bbd5ba7c PW |
36 | noinst_HEADERS += src/hash.h |
37 | noinst_HEADERS += src/hash_impl.h | |
78cd96b1 | 38 | noinst_HEADERS += src/field.h |
11ab5622 | 39 | noinst_HEADERS += src/field_impl.h |
6558a267 | 40 | noinst_HEADERS += src/bench.h |
78cd96b1 | 41 | |
81b2faeb | 42 | pkgconfigdir = $(libdir)/pkgconfig |
c7ee71f7 AT |
43 | pkgconfig_DATA = libsecp256k1.pc |
44 | ||
8881212e | 45 | libsecp256k1_la_SOURCES = src/secp256k1.c |
76f67697 | 46 | libsecp256k1_la_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src $(SECP_INCLUDES) |
67935050 | 47 | libsecp256k1_la_LIBADD = $(SECP_LIBS) |
e2d66a2c | 48 | |
8881212e | 49 | |
78cd96b1 CF |
50 | noinst_PROGRAMS = |
51 | if USE_BENCHMARK | |
039723d5 | 52 | noinst_PROGRAMS += bench_verify bench_recover bench_sign bench_internal |
504c63d7 PW |
53 | bench_verify_SOURCES = src/bench_verify.c |
54 | bench_verify_LDADD = libsecp256k1.la $(SECP_LIBS) | |
55 | bench_verify_LDFLAGS = -static | |
000bdf6d PW |
56 | bench_recover_SOURCES = src/bench_recover.c |
57 | bench_recover_LDADD = libsecp256k1.la $(SECP_LIBS) | |
58 | bench_recover_LDFLAGS = -static | |
fa5c13ff PW |
59 | bench_sign_SOURCES = src/bench_sign.c |
60 | bench_sign_LDADD = libsecp256k1.la $(SECP_LIBS) | |
61 | bench_sign_LDFLAGS = -static | |
039723d5 PW |
62 | bench_internal_SOURCES = src/bench_internal.c |
63 | bench_internal_LDADD = $(SECP_LIBS) | |
64 | bench_internal_LDFLAGS = -static | |
65 | bench_internal_CPPFLAGS = $(SECP_INCLUDES) | |
78cd96b1 CF |
66 | endif |
67 | ||
68 | if USE_TESTS | |
69 | noinst_PROGRAMS += tests | |
70 | tests_SOURCES = src/tests.c | |
76f67697 | 71 | tests_CPPFLAGS = -DVERIFY -I$(top_srcdir)/src $(SECP_INCLUDES) $(SECP_TEST_INCLUDES) |
67935050 | 72 | tests_LDADD = $(SECP_LIBS) $(SECP_TEST_LIBS) |
78cd96b1 CF |
73 | tests_LDFLAGS = -static |
74 | TESTS = tests | |
75 | endif | |
76 | ||
fbecc38a | 77 | if USE_ECMULT_STATIC_PRECOMPUTATION |
76f67697 | 78 | CPPFLAGS_FOR_BUILD +=-I$(top_srcdir)/ |
fbecc38a TD |
79 | CFLAGS_FOR_BUILD += -Wall -Wextra -Wno-unused-function |
80 | ||
81 | gen_context_OBJECTS = gen_context.o | |
82 | ||
83 | gen_%.o: src/gen_%.c | |
84 | $(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) -c $< -o $@ | |
85 | ||
86 | gen_context$(BUILD_EXEEXT): $(gen_context_OBJECTS) | |
87 | $(CC_FOR_BUILD) $^ -o $@ | |
88 | ||
89 | BUILT_SOURCES = src/ecmult_static_context.h | |
90 | ||
91 | src/ecmult_static_context.h: gen_context | |
92 | ./gen_context | |
c37812f5 GM |
93 | |
94 | CLEANFILES = gen_context src/ecmult_static_context.h | |
fbecc38a TD |
95 | endif |
96 | ||
76f67697 | 97 | EXTRA_DIST = autogen.sh src/gen_context.c src/basic-config.h |