2016-09-21 22:57:22 +08:00
|
|
|
#!/bin/bash
|
2017-11-26 08:14:02 +08:00
|
|
|
rm -f .build
|
2018-01-22 22:32:31 +08:00
|
|
|
if [ ! -f .git/hooks/pre-commit ]; then
|
|
|
|
ln -s -f ../../scripts/sof-pre-commit-hook.sh .git/hooks/pre-commit
|
|
|
|
fi
|
|
|
|
if [ ! -f .git/hooks/post-commit ]; then
|
|
|
|
ln -s -f ../../scripts/sof-post-commit-hook.sh .git/hooks/post-commit
|
|
|
|
fi
|
2016-09-21 22:57:22 +08:00
|
|
|
libtoolize -c --force
|
|
|
|
aclocal -I m4 --install
|
|
|
|
autoconf -Wall
|
|
|
|
autoheader
|
|
|
|
automake -a --copy --foreign --add-missing
|