curl/reconf

16 lines
194 B
Plaintext
Raw Normal View History

1999-12-29 09:20:26 -05:00
#!/bin/sh
#
# $Id$
#
# re autoconf/automake shell script
#
die(){
echo "$@" ; exit
}
2000-08-30 07:54:57 -04:00
aclocal -I . || die "ahhhhh"
autoheader || die "ahhhhh"
automake || die "ahhhhh"
autoconf || die "ahhhhh"