2008-10-17 02:48:25 +02:00
|
|
|
#!/bin/sh
|
|
|
|
rm -f config.cache
|
|
|
|
rm -fr autom4te.cache
|
2009-08-28 17:36:03 +02:00
|
|
|
rm -rf config.log
|
|
|
|
rm -rf Makefile
|
2008-10-17 02:48:25 +02:00
|
|
|
chmod a-x docs/*.rst docs/*.htm*
|
|
|
|
|
2009-08-28 17:36:03 +02:00
|
|
|
autoheader
|
|
|
|
aclocal -I m4
|
|
|
|
glibtoolize -f
|
|
|
|
automake -ac
|
|
|
|
autoconf
|
|
|
|
./configure --enable-python-binding --with-zlib=shipped --enable-examples=yes --enable-tests=yes --with-boost-system=mt --with-boost-python=mt --with-boost-thread=mt --with-boost-filesystem=mt --with-boost-regex=mt --with-boost-program-options=mt
|
|
|
|
make -j 8 dist check
|
2008-10-17 02:48:25 +02:00
|
|
|
|