#!/bin/sh case $1 in --clean|-c) make clean make distclean rm -v ar-lib aclocal.m4 "config.h.in~" compile depcomp \ INSTALL install-sh missing test-driver configure \ Makefile.in tests/Makefile.in tests/samples/Makefile.in \ tests/Makefile.am docs/Makefile.in \ 2>/dev/null rm -vR autom4te.cache/ .deps 2>/dev/null exit 0 ;; --regen|-r) sh tests/regen.sh autoreconf ;; --new|-n|*) sh tests/regen.sh aclocal #autoheader automake -a autoconf autoreconf -i -m ;; esac