mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-15 20:43:57 +08:00
29 lines
563 B
Bash
Executable file
29 lines
563 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export AUTOMAKE_LIB=`automake --print-libdir`
|
|
|
|
./clean.sh
|
|
|
|
cd ..
|
|
aclocal
|
|
automake --force-missing --add-missing
|
|
autoconf
|
|
|
|
rm -rvf autom*te.cache
|
|
|
|
if [ -d ${AUTOMAKE_LIB} ]
|
|
then
|
|
rm -vf compile depcomp install-sh missing
|
|
cp -vf ${AUTOMAKE_LIB}/compile .
|
|
cp -vf ${AUTOMAKE_LIB}/depcomp .
|
|
cp -vf ${AUTOMAKE_LIB}/install-sh .
|
|
cp -vf ${AUTOMAKE_LIB}/missing .
|
|
else
|
|
echo "****************************************************************"
|
|
echo "Error: automake ${AUTOMAKE_LIB} not found - exiting!"
|
|
exit 1
|
|
fi
|
|
|
|
cd dist
|
|
|
|
# eof
|