mirror of
https://github.com/moparisthebest/curl
synced 2024-11-06 17:45:05 -05:00
14 lines
336 B
Bash
Executable File
14 lines
336 B
Bash
Executable File
#!/bin/sh
|
|
|
|
die(){
|
|
echo "$@"
|
|
exit
|
|
}
|
|
|
|
MAKEFILES=`find . -name Makefile.am | sed 's/\.am$//'`
|
|
|
|
automake $MAKEFILES || die "The command 'automake $MAKEFILES' failed"
|
|
aclocal || die "The command 'aclocal' failed"
|
|
autoheader || die "The command 'autoheader' failed"
|
|
autoconf || die "The command 'autoconf' failed"
|