blob: 0592f16c2e3a21905362de59b8439896ceee1187 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
exec autoreconf -ivf
fi
set -e
# Run this to generate all the initial makefiles, etc.
aclocal && \
autoheader && \
autoconf && \
automake --add-missing --copy
|