blob: 254ccf595509be8ad7fa798766c573ebaa2524e7 [file] [log] [blame]
#!/bin/sh
echo "*** Autoconf/automake is deprecated for Openwsman"
echo "*** and might not fully work."
echo "*** Use cmake instead !"
UNAME=`uname`
mkdir -p m4
# Ouch, automake require this
cp README.md README
if [ "$UNAME" = "Darwin" ]; then
LIBTOOLIZE=glibtoolize
else
LIBTOOLIZE=libtoolize
fi
$LIBTOOLIZE --copy --force --automake
aclocal
autoheader
automake --add-missing --copy --foreign
autoconf