mirror of https://github.com/moparisthebest/curl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
302 B
15 lines
302 B
#!/bin/sh |
|
# |
|
# $Id$ |
|
# |
|
# re autoconf/automake shell script |
|
# |
|
|
|
die(){ |
|
echo "$@" ; exit |
|
} |
|
|
|
aclocal -I . || die "The command 'aclocal -I .' failed" |
|
autoheader || die "The command 'autoheader' failed" |
|
automake || die "The command 'automake' failed" |
|
autoconf || die "The command 'autoconf' failed"
|
|
|