reconf 302 B

123456789101112131415
  1. #!/bin/sh
  2. #
  3. # $Id$
  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"