Codebase list faad2 / 1dadb701-425a-4f08-bd4a-fb43a8e3ebf2/main bootstrap
1dadb701-425a-4f08-bd4a-fb43a8e3ebf2/main

Tree @1dadb701-425a-4f08-bd4a-fb43a8e3ebf2/main (Download .tar.gz)

bootstrap @1dadb701-425a-4f08-bd4a-fb43a8e3ebf2/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"