autogen.sh 712 B

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