mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
17 lines
197 B
Plaintext
17 lines
197 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
# re autoconf/automake shell script
|
||
|
#
|
||
|
|
||
|
die(){
|
||
|
echo "$@" ; exit
|
||
|
}
|
||
|
|
||
|
aclocal || die "ahhhhh"
|
||
|
autoheader || die "ahhhhh"
|
||
|
automake || die "ahhhhh"
|
||
|
autoconf || die "ahhhhh"
|
||
|
|