14 lines
168 B
Text
14 lines
168 B
Text
|
#! /bin/sh
|
||
|
|
||
|
sh() {
|
||
|
/bin/sh -c "set -x; $*"
|
||
|
}
|
||
|
|
||
|
sh aclocal
|
||
|
sh automake --foreign --include-deps
|
||
|
sh autoconf
|
||
|
|
||
|
echo
|
||
|
echo You are now ready to run ./configure
|
||
|
echo enjoy!
|