Skip to content
Snippets Groups Projects
autogen.sh 324 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    # $Id$
    
    # barf on errors
    set -e
    
    # prepare everything
    echo "--> aclocal..."
    aclocal
    
    
    # applications should provide a config.h for now
    #echo "--> autoheader..."
    #autoheader
    
    
    echo "--> automake..."
    automake --add-missing
    
    
    echo "files successfully created, please run ./configure now"