mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 10:34:54 +00:00
12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# THIS SCRIPT IS FOR PROJECT MAINTAINER ONLY
|
||
|
# It is executed only to generate "configure"
|
||
|
|
||
|
set -x
|
||
|
aclocal -I config
|
||
|
autoheader
|
||
|
libtoolize --copy --force
|
||
|
automake --foreign --add-missing --copy
|
||
|
autoconf
|