]> Git Repo - secp256k1.git/blob - Makefile.am
Fix for Windows compile issue
[secp256k1.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I build-aux/m4
2
3 lib_LTLIBRARIES = libsecp256k1.la
4 include_HEADERS = include/secp256k1.h
5 noinst_HEADERS =
6 noinst_HEADERS += src/scalar.h
7 noinst_HEADERS += src/scalar_4x64.h
8 noinst_HEADERS += src/scalar_8x32.h
9 noinst_HEADERS += src/scalar_impl.h
10 noinst_HEADERS += src/scalar_4x64_impl.h
11 noinst_HEADERS += src/scalar_8x32_impl.h
12 noinst_HEADERS += src/group.h
13 noinst_HEADERS += src/group_impl.h
14 noinst_HEADERS += src/num_gmp.h
15 noinst_HEADERS += src/num_gmp_impl.h
16 noinst_HEADERS += src/ecdsa.h
17 noinst_HEADERS += src/ecdsa_impl.h
18 noinst_HEADERS += src/eckey.h
19 noinst_HEADERS += src/eckey_impl.h
20 noinst_HEADERS += src/ecmult.h
21 noinst_HEADERS += src/ecmult_impl.h
22 noinst_HEADERS += src/ecmult_const.h
23 noinst_HEADERS += src/ecmult_const_impl.h
24 noinst_HEADERS += src/ecmult_gen.h
25 noinst_HEADERS += src/ecmult_gen_impl.h
26 noinst_HEADERS += src/num.h
27 noinst_HEADERS += src/num_impl.h
28 noinst_HEADERS += src/field_10x26.h
29 noinst_HEADERS += src/field_10x26_impl.h
30 noinst_HEADERS += src/field_5x52.h
31 noinst_HEADERS += src/field_5x52_impl.h
32 noinst_HEADERS += src/field_5x52_int128_impl.h
33 noinst_HEADERS += src/field_5x52_asm_impl.h
34 noinst_HEADERS += src/java/org_bitcoin_NativeSecp256k1.h
35 noinst_HEADERS += src/util.h
36 noinst_HEADERS += src/testrand.h
37 noinst_HEADERS += src/testrand_impl.h
38 noinst_HEADERS += src/hash.h
39 noinst_HEADERS += src/hash_impl.h
40 noinst_HEADERS += src/field.h
41 noinst_HEADERS += src/field_impl.h
42 noinst_HEADERS += src/bench.h
43 noinst_HEADERS += contrib/lax_der_parsing.h
44 noinst_HEADERS += contrib/lax_der_parsing.c
45 noinst_HEADERS += contrib/lax_der_privatekey_parsing.h
46 noinst_HEADERS += contrib/lax_der_privatekey_parsing.c
47
48 pkgconfigdir = $(libdir)/pkgconfig
49 pkgconfig_DATA = libsecp256k1.pc
50
51 libsecp256k1_la_SOURCES = src/secp256k1.c
52 libsecp256k1_la_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src $(SECP_INCLUDES)
53 libsecp256k1_la_LIBADD = $(SECP_LIBS)
54
55
56 noinst_PROGRAMS =
57 if USE_BENCHMARK
58 noinst_PROGRAMS += bench_verify bench_sign bench_internal
59 bench_verify_SOURCES = src/bench_verify.c
60 bench_verify_LDADD = libsecp256k1.la $(SECP_LIBS)
61 bench_sign_SOURCES = src/bench_sign.c
62 bench_sign_LDADD = libsecp256k1.la $(SECP_LIBS)
63 bench_internal_SOURCES = src/bench_internal.c
64 bench_internal_LDADD = $(SECP_LIBS)
65 bench_internal_CPPFLAGS = $(SECP_INCLUDES)
66 endif
67
68 if USE_TESTS
69 noinst_PROGRAMS += tests
70 tests_SOURCES = src/tests.c
71 tests_CPPFLAGS = -DVERIFY -I$(top_srcdir)/src -I$(top_srcdir)/include $(SECP_INCLUDES) $(SECP_TEST_INCLUDES)
72 tests_LDADD = $(SECP_LIBS) $(SECP_TEST_LIBS)
73 tests_LDFLAGS = -static
74 TESTS = tests
75 endif
76
77 if USE_ECMULT_STATIC_PRECOMPUTATION
78 CPPFLAGS_FOR_BUILD +=-I$(top_srcdir)
79 CFLAGS_FOR_BUILD += -Wall -Wextra -Wno-unused-function
80
81 gen_context_OBJECTS = gen_context.o
82 gen_context_BIN = gen_context$(BUILD_EXEEXT)
83 gen_%.o: src/gen_%.c
84         $(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) -c $< -o $@
85
86 $(gen_context_BIN): $(gen_context_OBJECTS)
87         $(CC_FOR_BUILD) $^ -o $@
88
89 $(libsecp256k1_la_OBJECTS): src/ecmult_static_context.h
90 $(tests_OBJECTS): src/ecmult_static_context.h
91 $(bench_internal_OBJECTS): src/ecmult_static_context.h
92
93 src/ecmult_static_context.h: $(gen_context_BIN)
94         ./$(gen_context_BIN)
95
96 CLEANFILES = $(gen_context_BIN) src/ecmult_static_context.h
97 endif
98
99 EXTRA_DIST = autogen.sh src/gen_context.c src/basic-config.h
100
101 if ENABLE_MODULE_ECDH
102 include src/modules/ecdh/Makefile.am.include
103 endif
104
105 if ENABLE_MODULE_SCHNORR
106 include src/modules/schnorr/Makefile.am.include
107 endif
108
109 if ENABLE_MODULE_RECOVERY
110 include src/modules/recovery/Makefile.am.include
111 endif
This page took 0.028857 seconds and 4 git commands to generate.