libpipecolors/autogen.sh

13 lines
268 B
Bash
Raw Normal View History

2015-07-01 07:44:53 -07:00
#!/bin/sh
set -x
test -d autom4te.cache && rm -rf autom4te.cache
2015-07-01 15:17:12 -07:00
test -d config && rm -rf config
2015-07-01 09:17:08 -07:00
mkdir config || exit 1
2015-07-01 07:44:53 -07:00
libtoolize --install --copy || exit 1
aclocal -I config || exit 1
autoheader || exit 1
autoconf || exit 1
automake --add-missing --copy || exit 1