Skip to content

Commit 78cd96b

Browse files
committed
autotools: autotools'ify libsecp256k1
1 parent 60442b8 commit 78cd96b

13 files changed

+452
-224
lines changed

.gitignore

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
1-
obj/*
21
bench
2+
bench.exe
33
tests
4+
tests.exe
45
*.so
56
*.a
6-
config.mk
77
!.gitignore
8+
9+
Makefile
10+
configure
11+
.libs/
12+
Makefile.in
13+
aclocal.m4
14+
autogen.sh
15+
autom4te.cache/
16+
config.log
17+
config.status
18+
*.tar.gz
19+
*.la
20+
libtool
21+
.deps/
22+
.dirstamp
23+
src/build-aux/
24+
*.lo
25+
*.o
26+
*~
27+
src/libsecp256k1-config.h
28+
src/libsecp256k1-config.h.in
29+
m4/libtool.m4
30+
m4/ltoptions.m4
31+
m4/ltsugar.m4
32+
m4/ltversion.m4
33+
m4/lt~obsolete.m4
34+
src/stamp-h1

Makefile

-49
This file was deleted.

Makefile.am

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
INCLUDES = $(SECP_INCLUDES)
3+
lib_LTLIBRARIES = libsecp256k1.la
4+
libsecp256k1_la_SOURCES = src/secp256k1.c
5+
libsecp256k1_la_CPPFLAGS = -I$(top_srcdir)/include $(SECP_INCLUDES)
6+
libsecp256k1_la_LIBADD = $(SECP_LIBS)
7+
include_HEADERS = include/secp256k1.h
8+
noinst_HEADERS =
9+
noinst_HEADERS += src/group.h
10+
noinst_HEADERS += src/num_openssl.h
11+
noinst_HEADERS += src/num_gmp.h
12+
noinst_HEADERS += src/ecdsa.h
13+
noinst_HEADERS += src/ecmult.h
14+
noinst_HEADERS += src/num.h
15+
noinst_HEADERS += src/field_10x26.h
16+
noinst_HEADERS += src/field_5x52.h
17+
noinst_HEADERS += src/java/org_bitcoin_NativeSecp256k1.h
18+
noinst_HEADERS += src/util.h
19+
noinst_HEADERS += src/field_gmp.h
20+
noinst_HEADERS += src/impl/group.h
21+
noinst_HEADERS += src/impl/num_openssl.h
22+
noinst_HEADERS += src/impl/num_gmp.h
23+
noinst_HEADERS += src/impl/ecdsa.h
24+
noinst_HEADERS += src/impl/field_5x52_int128.h
25+
noinst_HEADERS += src/impl/ecmult.h
26+
noinst_HEADERS += src/impl/num.h
27+
noinst_HEADERS += src/impl/field_10x26.h
28+
noinst_HEADERS += src/impl/field_5x52.h
29+
noinst_HEADERS += src/impl/util.h
30+
noinst_HEADERS += src/impl/field_gmp.h
31+
noinst_HEADERS += src/impl/field_5x52_asm.h
32+
noinst_HEADERS += src/impl/field.h
33+
noinst_HEADERS += src/field.h
34+
35+
if USE_ASM
36+
libsecp256k1_la_SOURCES += src/field_5x52_asm.asm
37+
endif
38+
39+
noinst_PROGRAMS =
40+
if USE_BENCHMARK
41+
noinst_PROGRAMS += bench
42+
bench_SOURCES = src/bench.c
43+
bench_CPPFLAGS = -DNDEBUG
44+
bench_LDADD = libsecp256k1.la $(SECP_LIBS)
45+
bench_LDFLAGS = -static
46+
endif
47+
48+
if USE_TESTS
49+
noinst_PROGRAMS += tests
50+
tests_SOURCES = src/tests.c
51+
tests_CPPFLAGS = -DVERIFY $(SECP_TEST_INCLUDES)
52+
tests_LDADD = libsecp256k1.la $(SECP_LIBS) $(SECP_TEST_LIBS)
53+
tests_LDFLAGS = -static
54+
TESTS = tests
55+
endif
56+
57+
EXTRA_DIST = nasm_lt.sh
58+
59+
#x86_64 only
60+
if USE_ASM
61+
.asm.lo:
62+
$(LIBTOOL) --mode=compile --tag YASM $(srcdir)/nasm_lt.sh $(YASM) -f elf64 $(YAFLAGS) -I$(srcdir) -I. $< -o $@
63+
endif

configure

-173
This file was deleted.

0 commit comments

Comments
 (0)