forked from Mirrors/freeswitch
fc40475037
Move all the GNU build files to the root directory so that we look like a normal *NIX-centric project. Thanks to Viktor Krikrun for an initial patch here. For this commit, I ended up redoing the move from scratch to separate out this move from other changes.
15 lines
201 B
Bash
Executable File
15 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
reconf () {
|
|
aclocal
|
|
mkdir -p config
|
|
libtoolize --copy --automake
|
|
autoconf
|
|
autoheader
|
|
automake --no-force --add-missing --copy
|
|
}
|
|
|
|
(cd third_party/bnlib && ./bootstrap.sh)
|
|
reconf
|
|
|