build: add autogen. How was this missing?
This commit is contained in:
parent
ebfa43b20a
commit
d40908763a
|
@ -11,7 +11,6 @@ configure
|
|||
.libs/
|
||||
Makefile.in
|
||||
aclocal.m4
|
||||
autogen.sh
|
||||
autom4te.cache/
|
||||
config.log
|
||||
config.status
|
||||
|
|
|
@ -57,7 +57,7 @@ tests_LDFLAGS = -static
|
|||
TESTS = tests
|
||||
endif
|
||||
|
||||
EXTRA_DIST = nasm_lt.sh
|
||||
EXTRA_DIST = autogen.sh nasm_lt.sh
|
||||
|
||||
#x86_64 only
|
||||
if USE_ASM
|
||||
|
|
|
@ -41,9 +41,7 @@ Build steps
|
|||
|
||||
libsecp256k1 is built using autotools:
|
||||
|
||||
$ aclocal
|
||||
$ autoreconf --install
|
||||
$ automake
|
||||
$ ./autogen.sh # not necessary when building from release tarballs
|
||||
$ ./configure
|
||||
$ make
|
||||
$ sudo make install # optional
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
autoreconf -if
|
Loading…
Reference in New Issue