mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-09 00:46:12 +00:00
18 lines
191 B
Bash
Executable File
18 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
run ()
|
|
{
|
|
echo "running: $*"
|
|
eval $*
|
|
|
|
if test $? != 0 ; then
|
|
echo "error: while running '$*'"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
run aclocal
|
|
run autoheader
|
|
run automake -a
|
|
run autoconf
|