14 lines
229 B
Bash
Executable File
14 lines
229 B
Bash
Executable File
#! /bin/sh
|
|
|
|
LIBTOOLIZE=libtoolize
|
|
if test x"`uname -s`" = "xDarwin" ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
|
|
aclocal -I config && \
|
|
$LIBTOOLIZE --automake --force --copy && \
|
|
automake --add-missing --copy && \
|
|
autoconf
|
|
|
|
# Taf!
|