Skip to content
Snippets Groups Projects
reconf 197 B
Newer Older
  • Learn to ignore specific revisions
  • Daniel Stenberg's avatar
    Daniel Stenberg committed
    #!/bin/sh
    #
    # $Id$
    #
    # re autoconf/automake shell script
    #
    
    die(){
    	echo "$@" ; exit
    }
    
    aclocal    || die "ahhhhh"
    autoheader || die "ahhhhh"
    automake   || die "ahhhhh"
    autoconf   || die "ahhhhh"