autogen.sh 320 B

1234567891011121314151617
  1. #!/bin/sh
  2. # Usage: sh -x ./autogen.sh
  3. set -e
  4. [ -f GUILE-VERSION ] || {
  5. echo "autogen.sh: run this command only at the top of guile-core."
  6. exit 1
  7. }
  8. ######################################################################
  9. ### update infrastructure
  10. autoreconf -i --force --verbose
  11. echo "Now run configure and make."