Codebase list faad2 / 310d5418-20a5-4122-b009-25956b7ff673/main bootstrap
310d5418-20a5-4122-b009-25956b7ff673/main

Tree @310d5418-20a5-4122-b009-25956b7ff673/main (Download .tar.gz)

bootstrap @310d5418-20a5-4122-b009-25956b7ff673/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"