Codebase list faad2 / cb965aa4-8e19-4553-8907-5b32fe2d2d67/main bootstrap
cb965aa4-8e19-4553-8907-5b32fe2d2d67/main

Tree @cb965aa4-8e19-4553-8907-5b32fe2d2d67/main (Download .tar.gz)

bootstrap @cb965aa4-8e19-4553-8907-5b32fe2d2d67/mainraw · 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"