mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
16 lines
194 B
Bash
Executable File
16 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
# re autoconf/automake shell script
|
|
#
|
|
|
|
die(){
|
|
echo "$@" ; exit
|
|
}
|
|
|
|
aclocal -I . || die "ahhhhh"
|
|
autoheader || die "ahhhhh"
|
|
automake || die "ahhhhh"
|
|
autoconf || die "ahhhhh"
|