123456789101112131415161718192021222324252627282930313233343536373839 |
- #!/bin/sh
- if [ "x$1" = "xam" ] ; then
- set -ex
- automake -a -c
- ./config.status
- else
- set -ex
- make maintainer-clean || true
- rm -rf autom4te.cache
- rm -f config.cache
- aclocal
- autoheader
- automake -a -c
- autoconf -Wall
- ./configure "$@"
- fi
|