mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 01:55:02 -07:00
12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
|
exec autoreconf -ivf
|
|
fi
|
|
|
|
aclocal && \
|
|
autoheader && \
|
|
automake --add-missing --force-missing --include-deps && \
|
|
autoconf
|
|
|