Add win32 directory to EXTRA_DIST
[sipe-libnice.git] / autogen.sh
blobd58c834c6a8ee2ff23289759bf03ce5f35029eb7
1 #!/bin/sh
2 set -e
4 test -d m4 || mkdir m4
5 gtkdocize || exit 1
7 autoreconf -fi
9 run_configure=true
10 for arg in $*; do
11 case $arg in
12 --no-configure)
13 run_configure=false
17 esac
18 done
20 if test $run_configure = true; then
21 ./configure "$@"