The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

27 lines
691 B

4 weeks ago
  1. #!/bin/sh
  2. ########################################################################
  3. # Run this script on the top level of GLPK directory to regenerate the
  4. # configure script and the Makefiles from templates.
  5. #
  6. # NOTE: You need to have GNU autotools installed.
  7. ########################################################################
  8. set -e
  9. test -f configure.ac || {
  10. echo "You should run this script on the top level of GLPK directory."
  11. exit
  12. }
  13. echo "Executing libtoolize..."
  14. libtoolize -c -f
  15. echo "Executing aclocal..."
  16. aclocal -I m4
  17. echo "Executing autoconf..."
  18. autoconf
  19. echo "Executing automake..."
  20. automake -c -a
  21. echo "Done."
  22. echo "See file INSTALL for installation instructions."