root / autogen.sh @ 47c86659
History | View | Annotate | Download (302 Bytes)
1 | 79224631 | Lance Albertson | #!/bin/sh |
---|---|---|---|
2 | 79224631 | Lance Albertson | |
3 | 79224631 | Lance Albertson | if test ! -f configure.ac ; then |
4 | 79224631 | Lance Albertson | echo "You must execute this script from the top level directory." |
5 | 79224631 | Lance Albertson | exit 1 |
6 | 79224631 | Lance Albertson | fi |
7 | 79224631 | Lance Albertson | |
8 | 79224631 | Lance Albertson | set -e |
9 | 79224631 | Lance Albertson | |
10 | 79224631 | Lance Albertson | rm -rf config.cache autom4te.cache |
11 | 79224631 | Lance Albertson | mkdir -p autotools |
12 | 79224631 | Lance Albertson | |
13 | 79224631 | Lance Albertson | ${ACLOCAL:-aclocal} -I autotools |
14 | 79224631 | Lance Albertson | ${AUTOCONF:-autoconf} |
15 | 79224631 | Lance Albertson | ${AUTOMAKE:-automake} --add-missing |
16 | 79224631 | Lance Albertson | |
17 | 79224631 | Lance Albertson | rm -rf autom4te.cache |