Codebase list faad2 / upstream/2.10.0+git20210101.c626366 bootstrap
upstream/2.10.0+git20210101.c626366

Tree @upstream/2.10.0+git20210101.c626366 (Download .tar.gz)

bootstrap @upstream/2.10.0+git20210101.c626366raw · history · blame

#! /bin/sh

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

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