Codebase list faad2 / upstream/2.8.0_cvs20150510 bootstrap
upstream/2.8.0_cvs20150510

Tree @upstream/2.8.0_cvs20150510 (Download .tar.gz)

bootstrap @upstream/2.8.0_cvs20150510raw · history · blame

#! /bin/sh

case $OSTYPE in
	darwin*)
	LIBTOOLIZE=glibtoolize
	;;
	*)
	LIBTOOLIZE=libtoolize
	;;
esac

aclocal -I .                   && \
autoheader                     && \
$LIBTOOLIZE --automake --copy   && \
automake --add-missing --copy  && \
autoconf                       && \
echo "Ready to run ./configure"