Codebase list faad2 / 1b27ca5c-24f6-4936-80f7-db4f695fef76/main bootstrap
1b27ca5c-24f6-4936-80f7-db4f695fef76/main

Tree @1b27ca5c-24f6-4936-80f7-db4f695fef76/main (Download .tar.gz)

bootstrap @1b27ca5c-24f6-4936-80f7-db4f695fef76/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"