15 lines
170 B
Bash
Executable File
15 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
PATH=$PATH:/usr/local/bin
|
|
|
|
aclocal $AC_SEARCH_OPTS
|
|
autoconf
|
|
autoreconf --install
|
|
autoheader
|
|
automake --copy --add-missing
|