libmbus/build.sh

24 lines
348 B
Bash
Raw Normal View History

#!/bin/sh
#
if [ -f Makefile ]; then
#
# use existing automake files
#
echo >> /dev/null
else
#
# regenerate automake files
#
echo "Running autotools..."
autoheader \
&& aclocal \
&& libtoolize --ltdl --copy --force \
&& automake --add-missing --copy \
&& autoconf \
&& ./configure
fi
make