/autogen.sh

http://ftk.googlecode.com/ · Shell · 18 lines · 14 code · 3 blank · 1 comment · 7 complexity · 17d06af50ef500bc877b50d665e789f5 MD5 · raw file

  1. #!/bin/sh
  2. echo "aclocal.."
  3. aclocal --force || exit 1
  4. echo "libtoolize.."
  5. libtoolize --force || exit 1
  6. gtkdocize || exit 1
  7. echo "autoheader.."
  8. autoheader --force || exit 1
  9. if [ -f config.h.in~ ]; then
  10. rm config.h.in~
  11. fi
  12. echo "automake.."
  13. automake --force --add-missing || exit 1
  14. echo "autoconf.."
  15. autoconf --force || exit 1