summaryrefslogtreecommitdiffabout
path: root/autogen.sh
blob: bf32a3593cb7a028de477ee9ee1775b6be71ac27 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
tool_libtoolize="$(type -P glibtoolize || type -P libtoolize)"
if test -z "$tool_libtoolize" ; then
 echo "Failed to find libtoolize." ; exit 1;
fi
   "$tool_libtoolize" -f \
&& aclocal \
&& autoheader \
&& automake -a \
&& autoconf \
&& ./configure "$@"