Codebase list faad2 / upstream/2.10.0 bootstrap
upstream/2.10.0

Tree @upstream/2.10.0 (Download .tar.gz)

bootstrap @upstream/2.10.0

5d5649c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#! /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"