Codebase list faad2 / 2094023a-dffd-4430-8685-80b84e1ff3d2/main bootstrap
2094023a-dffd-4430-8685-80b84e1ff3d2/main

Tree @2094023a-dffd-4430-8685-80b84e1ff3d2/main (Download .tar.gz)

bootstrap @2094023a-dffd-4430-8685-80b84e1ff3d2/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"