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
|
|
|
|
automake --gnits --include-deps --add-missing --copy
|
|
|
|
autoconf
|
|
|
|
|
2009-05-02 23:12:18 +02:00
|
|
|
#Copy settings.h.cvs to settings.h and that's it,
|
|
|
|
|
|
|
|
directory=`dirname $0`
|
2009-05-02 23:03:37 +02:00
|
|
|
cp $directory/settings.h.cvs $directory/settings.h
|
|
|
|
echo "Now you are ready to run ./configure also check settings.h for extra build settings"
|