mirror of
https://github.com/curl/curl.git
synced 2026-04-15 08:51:46 +03:00
16 lines
197 B
Bash
Executable file
16 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
# re autoconf/automake shell script
|
|
#
|
|
|
|
die(){
|
|
echo "$@" ; exit
|
|
}
|
|
|
|
aclocal || die "ahhhhh"
|
|
autoheader || die "ahhhhh"
|
|
automake || die "ahhhhh"
|
|
autoconf || die "ahhhhh"
|
|
|