[go: up one dir, main page]

Menu

[ca85d6]: / bootstrap  Maximize  Restore  History

Download this file

13 lines (10 with data), 302 Bytes

#! /bin/sh

# OSX uses BSD libtool by default -- we want GNU
case `uname` in 
	Darwin*) 
		LZ=glibtoolize ;;
	*) 
		LZ=libtoolize ;;
esac

rm -rf *cache
$LZ -f -c -i && aclocal -I src/scripts/m4 && autoheader && autoconf && automake -a -c --foreign && echo "Run './configure' and 'make' to build owfs"