12 lines
188 B
Bash
Executable File
12 lines
188 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# create config dir if not exist
|
|
test -d config || mkdir config
|
|
|
|
set -x
|
|
aclocal -I config
|
|
libtoolize --force --copy
|
|
autoheader
|
|
automake --foreign --add-missing --copy
|
|
autoconf
|