diff options
| author | 2013-09-17 11:00:31 +0200 | |
|---|---|---|
| committer | 2013-09-17 11:00:31 +0200 | |
| commit | c45ae1f6b6f53995a5bc99591688102d11ad2148 (patch) | |
| tree | 03e36986e4ad61f6345c64b7b2f673eebee33816 /autogen.sh | |
| download | libusbmuxd-c45ae1f6b6f53995a5bc99591688102d11ad2148.tar.gz libusbmuxd-c45ae1f6b6f53995a5bc99591688102d11ad2148.tar.bz2 | |
initial commit of adapted source tree.
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..3292973 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,15 @@ +#!/bin/sh +gprefix=`which glibtoolize 2>&1 >/dev/null` +if [ $? -eq 0 ]; then  +  glibtoolize --force +else +  libtoolize --force +fi +aclocal -I m4 +autoheader +automake --add-missing +autoconf + +if [ -z "$NOCONFIGURE" ]; then +    ./configure "$@" +fi | 
