#!/bin/sh set -e if [ ! -e "configure" ]; then ./autogen.sh fi mkdir -p _build cd _build if [ ! -e "Makefile" ]; then ../configure \ --enable-maintainer-mode \ $@ fi gmake -w html