libpipecolors/autogen.sh

14 lines
324 B
Bash
Raw Normal View History

2015-07-01 07:44:53 -07:00
#!/bin/sh
set -x
2015-07-07 15:09:36 -07:00
test -f configure && autoreconf -i && exit 0 ||
2015-07-01 07:44:53 -07:00
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
2015-08-07 12:39:25 -07:00
automake --add-missing --copy --force || exit 1