libevent/autogen.sh

23 lines
429 B
Bash
Raw Normal View History

2006-11-22 04:35:56 +00:00
#!/bin/sh
MAKE=make
if command -v gmake >/dev/null 2>/dev/null; then
MAKE=gmake
fi
$MAKE maintainer-clean >/dev/null 2>/dev/null
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
exec autoreconf -ivf
fi
2006-11-22 04:35:56 +00:00
LIBTOOLIZE=libtoolize
SYSNAME=`uname`
if [ "$SYSNAME" = "Darwin" ] ; then
2006-11-22 04:35:56 +00:00
LIBTOOLIZE=glibtoolize
fi
aclocal -I m4 && \
2006-11-22 04:35:56 +00:00
autoheader && \
$LIBTOOLIZE && \
autoconf && \
automake --add-missing --force-missing --copy