blob: 8d85a22952f5cb3105765fd0cd1e74313eec9a0d [file] [log] [blame]
Austin Schuh8d0a2852019-12-28 22:54:28 -08001#!/usr/bin/env bash
2# -*- sh -*-
3set -ex # exit on error
4libtoolize --force --copy
5aclocal
6autoheader
7automake --foreign --add-missing --copy
8autoconf
9if [ "$1" = "-a" ]; then
10 ./configure --prefix=/usr --enable-shared --enable-static
11 make
12 make dist
13fi