mirror of
https://github.com/libevent/libevent.git
synced 2025-01-20 05:02:55 +08:00
11 lines
191 B
Bash
11 lines
191 B
Bash
|
#!/bin/sh
|
||
|
LIBTOOLIZE=libtoolize
|
||
|
if [ "$(uname)" == "Darwin" ] ; then
|
||
|
LIBTOOLIZE=glibtoolize
|
||
|
fi
|
||
|
aclocal && \
|
||
|
autoheader && \
|
||
|
$LIBTOOLIZE && \
|
||
|
autoconf && \
|
||
|
automake --add-missing --copy
|