Codebase list faad2 / 7201b7f0-cc88-4315-82f6-59e67ffb6add/main bootstrap
7201b7f0-cc88-4315-82f6-59e67ffb6add/main

Tree @7201b7f0-cc88-4315-82f6-59e67ffb6add/main (Download .tar.gz)

bootstrap @7201b7f0-cc88-4315-82f6-59e67ffb6add/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"