reconf 348 B

12345678910111213141516
  1. #!/bin/sh
  2. #
  3. # $Id: reconf,v 1.4 2001/05/30 07:59:47 bagder Exp $
  4. #
  5. # re autoconf/automake shell script
  6. #
  7. die(){
  8. echo "$@" ; exit
  9. }
  10. aclocal -I . || die "The command 'aclocal -I .' failed"
  11. autoheader || die "The command 'autoheader' failed"
  12. automake || die "The command 'automake' failed"
  13. autoconf || die "The command 'autoconf' failed"