mirror of
https://github.com/curl/curl.git
synced 2026-04-15 01:11:40 +03:00
15 lines
194 B
Bash
Executable file
15 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"
|