2009-05-02 23:03:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-05-02 23:12:18 +02:00
|
|
|
echo "Generating build information using aclocal, autoheader, automake and autoconf"
|
|
|
|
echo "This may take a while ..."
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:12:18 +02:00
|
|
|
# Regenerate configuration files.
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
aclocal
|
|
|
|
autoheader
|
2009-05-03 00:28:34 +02:00
|
|
|
automake --include-deps --add-missing --copy
|
2009-05-02 23:03:37 +02:00
|
|
|
autoconf
|
|
|
|
|
2009-05-02 23:53:27 +02:00
|
|
|
echo "Now you are ready to run ./configure."
|
|
|
|
echo "You can also run ./configure --help for extra features to enable/disable."
|