autogen.sh 593 B

1234567891011121314151617181920
  1. #! /bin/sh
  2. # Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. #
  4. # Authors: Martin Gasbichler, Marcus Crestani
  5. #
  6. echo "This script requires an installed scheme48 executable in the path."
  7. echo "The executable should be Scheme 48 1.6 or later." &&
  8. sleep 3 &&
  9. ACLOCAL="aclocal -I m4" autoreconf -v -i &&
  10. ./configure &&
  11. rm -rf autom4te.cache &&
  12. rm -f scheme48.image build/initial.image-32 build/initial.image-64 c/scheme48.h &&
  13. make build/filenames.make &&
  14. make i-know-what-i-am-doing &&
  15. make c/scheme48.h &&
  16. make build/initial.image-32 build/initial.image-64 &&
  17. make distclean