autogen.sh 370 B

1234567891011121314151617181920212223
  1. #! /bin/sh
  2. copy=$1
  3. # Start by setting up everything for main tree
  4. aclocal -I ./automake
  5. gettextize $copy
  6. libtoolize --force $copy
  7. autoheader
  8. automake --add-missing --foreign $copy
  9. autoconf
  10. # Utils has it's own configure, so we need to repeat this there
  11. cd utils
  12. aclocal -I ../automake
  13. autoheader
  14. automake --foreign
  15. autoconf
  16. # Return to the previous directory
  17. cd ..