You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
192 B
13 lines
192 B
9 years ago
|
#!/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 -I m4
|
||
|
autoheader
|
||
|
automake --gnu --add-missing --copy
|
||
|
autoconf
|
||
|
|