mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-10 17:18:35 +08:00
17 lines
283 B
Bash
Executable file
17 lines
283 B
Bash
Executable file
#!/bin/bash
|
|
|
|
./clean.sh
|
|
|
|
cd ..
|
|
aclocal
|
|
automake --force-missing --add-missing
|
|
autoconf
|
|
|
|
rm -rvf depcomp install-sh missing autom*te.cache
|
|
cp -vf /usr/share/automake-1.11/depcomp .
|
|
cp -vf /usr/share/automake-1.11/install-sh .
|
|
cp -vf /usr/share/automake-1.11/missing .
|
|
|
|
cd dist
|
|
|
|
# eof
|