bootstrap 547 B

1234567891011121314
  1. #!/bin/sh
  2. set -e
  3. echo "Initial preparation...this can take awhile, so sit tight..."
  4. rm -f Makefile.am
  5. perl -w -e 'use File::Copy; exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { copy("./Makefile.am.oldautomake", "./Makefile.am"); } else { copy("./Makefile.am.newautomake", "./Makefile.am"); }'
  6. aclocal
  7. libtoolize --automake --copy --force
  8. autoheader
  9. automake --foreign --add-missing --copy
  10. autoconf
  11. echo "You are now ready to run ./configure ..."