13 lines
186 B
Bash
13 lines
186 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# You need autoconf 2.5x, preferably 2.57 or later
|
||
|
# You need automake 1.7 or later. 1.6 might work.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
aclocal
|
||
|
autoheader
|
||
|
automake --gnu --add-missing --copy
|
||
|
autoconf
|
||
|
|