autogen.sh 267 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. #
  3. # usage:
  4. #
  5. # banner <target name>
  6. #
  7. banner() {
  8. echo
  9. TG=`echo $1 | sed -e "s,/.*/,,g"`
  10. LINE=`echo $TG |sed -e "s/./-/g"`
  11. echo $LINE
  12. echo $TG
  13. echo $LINE
  14. echo
  15. }
  16. banner "autoreconf"
  17. autoreconf --force --install -Wall || exit $?
  18. banner "Finished"