summaryrefslogtreecommitdiffabout
path: root/autogen.sh
blob: 9a3c9e51916b326449c90e386ace05c1c7765494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
test -r autogen.local && source autogen.local
test -z "$tool_libtoolize" && 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 ${ACLOCAL_FLAGS} \
&& autoheader \
&& automake -a \
&& autoconf \
&& ./configure ${CONFIGURE_FLAGS} "$@"