18 lines
509 B
Bash
Executable file
18 lines
509 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
echo "Generating build information using aclocal, auotheader, automake and autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Touch the timestamps on all the files since CVS messes them up
|
|
directory=`dirname $0`
|
|
touch $directory/configure.in
|
|
|
|
# Regenerate configuration files
|
|
|
|
aclocal
|
|
autoheader
|
|
automake --gnits --include-deps --add-missing --copy
|
|
autoconf
|
|
|
|
cp $directory/settings.h.cvs $directory/settings.h
|
|
echo "Now you are ready to run ./configure also check settings.h for extra build settings"
|