mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-15 12:30:45 +08:00
17 lines
265 B
Bash
17 lines
265 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
./clean.sh
|
||
|
|
||
|
cd ..
|
||
|
aclocal
|
||
|
automake --force-missing --add-missing
|
||
|
autoconf
|
||
|
|
||
|
rm -vf depcomp install-sh missing
|
||
|
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 bin
|
||
|
|
||
|
# eof
|