Skip to content
Snippets Groups Projects
autogen.sh 506 B
Newer Older
  • Learn to ignore specific revisions
  • Thimo Neubauer's avatar
    Thimo Neubauer committed
    echo "--> libtoolize..."
    # this script won't rewrite the files if they already exist. This is a
    # PITA when you want to upgrade libtool, thus I'm setting --force
    libtoolize --force
    
    
    # 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"