You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
curl/reconf

16 lines
302 B
Plaintext

24 years ago
#!/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"