curl/reconf

16 строки
302 B
Plaintext
Исходник Обычный вид История

1999-12-29 17:20:26 +03:00
#!/bin/sh
#
# $Id$
#
# re autoconf/automake shell script
#
die(){
echo "$@" ; exit
}
2001-05-30 11:59:47 +04:00
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"