libmbus/build.sh
2012-02-16 15:46:48 +01:00

19 lines
202 B
Bash

#!/bin/sh
#
if [ -f Makefile ]; then
#
# use existing automake files
#
echo >> /dev/null
else
#
# regenerate automake files
#
automake --add-missing
autoreconf --install
./configure
fi
make