]> Git Repo - secp256k1.git/blob - Makefile.am
Split up signing and verification initialization
[secp256k1.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2 INCLUDES = $(SECP_INCLUDES)
3 lib_LTLIBRARIES = libsecp256k1.la
4 noinst_LTLIBRARIES = libsecp256k1_common.la
5 include_HEADERS = include/secp256k1.h
6 noinst_HEADERS =
7 noinst_HEADERS += src/group.h
8 noinst_HEADERS += src/group_impl.h
9 noinst_HEADERS += src/num_openssl.h
10 noinst_HEADERS += src/num_openssl_impl.h
11 noinst_HEADERS += src/num_gmp.h
12 noinst_HEADERS += src/num_gmp_impl.h
13 noinst_HEADERS += src/ecdsa.h
14 noinst_HEADERS += src/ecdsa_impl.h
15 noinst_HEADERS += src/ecmult.h
16 noinst_HEADERS += src/ecmult_impl.h
17 noinst_HEADERS += src/num.h
18 noinst_HEADERS += src/num_impl.h
19 noinst_HEADERS += src/field_10x26.h
20 noinst_HEADERS += src/field_10x26_impl.h
21 noinst_HEADERS += src/field_5x52.h
22 noinst_HEADERS += src/field_5x52_impl.h
23 noinst_HEADERS += src/field_5x52_int128_impl.h
24 noinst_HEADERS += src/field_5x52_asm_impl.h
25 noinst_HEADERS += src/java/org_bitcoin_NativeSecp256k1.h
26 noinst_HEADERS += src/util.h
27 noinst_HEADERS += src/util_impl.h
28 noinst_HEADERS += src/field_gmp.h
29 noinst_HEADERS += src/field_gmp_impl.h
30 noinst_HEADERS += src/field.h
31 noinst_HEADERS += src/field_impl.h
32
33 pkgconfigdir = $(libdir)/pkgconfig
34 pkgconfig_DATA = libsecp256k1.pc
35
36 libsecp256k1_common_la_SOURCES =
37 if USE_ASM
38 libsecp256k1_common_la_SOURCES += src/field_5x52_asm.asm
39 endif
40
41 libsecp256k1_la_SOURCES = src/secp256k1.c
42 libsecp256k1_la_CPPFLAGS = -I$(top_srcdir)/include $(SECP_INCLUDES)
43 libsecp256k1_la_LIBADD = libsecp256k1_common.la $(SECP_LIBS)
44
45 noinst_PROGRAMS =
46 if USE_BENCHMARK
47 noinst_PROGRAMS += bench
48 bench_SOURCES = src/bench.c
49 bench_LDADD = libsecp256k1_common.la $(SECP_LIBS)
50 bench_LDFLAGS = -static
51 endif
52
53 if USE_TESTS
54 noinst_PROGRAMS += tests
55 tests_SOURCES = src/tests.c
56 tests_CPPFLAGS = -DVERIFY $(SECP_TEST_INCLUDES)
57 tests_LDADD = libsecp256k1_common.la $(SECP_LIBS) $(SECP_TEST_LIBS)
58 tests_LDFLAGS = -static
59 TESTS = tests
60 endif
61
62 EXTRA_DIST = autogen.sh nasm_lt.sh
63
64 #x86_64 only
65 if USE_ASM
66 .asm.lo:
67         $(LIBTOOL) --mode=compile --tag YASM $(srcdir)/nasm_lt.sh $(YASM) -f $(YASM_BINFMT) $(YAFLAGS) -I$(srcdir) -I. $< -o $@
68 endif
This page took 0.026581 seconds and 4 git commands to generate.