Added autogen.sh script to simplify creating autogenerated files.
This commit is contained in:
parent
bb4f7ffdfb
commit
b0a62b8c67
1 changed files with 26 additions and 0 deletions
26
autogen.sh
Normal file
26
autogen.sh
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
echo "Running aclocal"
|
||||||
|
aclocal
|
||||||
|
|
||||||
|
echo "Running autoheader"
|
||||||
|
autoheader
|
||||||
|
|
||||||
|
echo "Running automake"
|
||||||
|
automake --add-missing
|
||||||
|
|
||||||
|
echo "Running autoconf"
|
||||||
|
autoconf
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "======================================"
|
||||||
|
|
||||||
|
if [ -f config.cache ]; then
|
||||||
|
echo "config.cache exists. Removing the config.cache file will force"
|
||||||
|
echo "the ./configure script to rerun all it's tests rather than using"
|
||||||
|
echo "the previously cached values."
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Now you are ready to run './configure'"
|
||||||
|
echo "======================================"
|
Loading…
Add table
Reference in a new issue