| 1234567891011121314151617181920212223 |
- #! /bin/sh
- copy=$1
- # Start by setting up everything for main tree
- aclocal -I ./automake
- gettextize $copy
- libtoolize --force $copy
- autoheader
- automake --add-missing --foreign $copy
- autoconf
- # Utils has it's own configure, so we need to repeat this there
- cd utils
- aclocal -I ../automake
- autoheader
- automake --foreign
- autoconf
- # Return to the previous directory
- cd ..
|