Codebase list faad2 / dac54bc4-4ff1-45f8-a2d6-5f0178060221/main bootstrap
dac54bc4-4ff1-45f8-a2d6-5f0178060221/main

Tree @dac54bc4-4ff1-45f8-a2d6-5f0178060221/main (Download .tar.gz)

bootstrap @dac54bc4-4ff1-45f8-a2d6-5f0178060221/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"