blob: b6ec7e2d5b8a322b20b61e320b56cac35cf3bada (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
die(){
echo "$@"
exit
}
automake Makefile || die "The command 'automake Makefile' failed"
aclocal || die "The command 'aclocal' failed"
autoheader || die "The command 'autoheader' failed"
autoconf || die "The command 'autoconf' failed"
|