blob: 8d85a22952f5cb3105765fd0cd1e74313eec9a0d [file] [log] [blame]
#!/usr/bin/env bash
# -*- sh -*-
set -ex # exit on error
libtoolize --force --copy
aclocal
autoheader
automake --foreign --add-missing --copy
autoconf
if [ "$1" = "-a" ]; then
./configure --prefix=/usr --enable-shared --enable-static
make
make dist
fi