libpipecolors/autogen.sh

13 lines
268 B
Bash
Executable File

#!/bin/sh
set -x
test -d autom4te.cache && rm -rf autom4te.cache
test -d config && rm -rf config
mkdir config || exit 1
libtoolize --install --copy || exit 1
aclocal -I config || exit 1
autoheader || exit 1
autoconf || exit 1
automake --add-missing --copy || exit 1