14 lines
142 B
Bash
14 lines
142 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
PATH=$PATH:/usr/local/bin
|
||
|
|
||
|
aclocal $AC_SEARCH_OPTS
|
||
|
autoconf
|
||
|
autoheader
|
||
|
automake --add-missing
|