twisterp2pbittorrentblockchainnetworkipv6microbloggingdecentralizedsocial-networkdhttwister-coretwisterarmyp2p-networktwister-servertwister-ipv6
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
903 B
22 lines
903 B
11 years ago
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
#clear out any extended attributes that Finder may add
|
||
|
sudo xattr -r -d com.apple.FinderInfo *
|
||
|
|
||
|
rm -f config.log config.report configure
|
||
|
rm -f m4/libtool.m4 m4/lt~obsolete.m4 m4/ltsugar.m4 m4/ltversion.m4 m4/ltoptions.m4
|
||
|
rm -fr autom4te.cache build-aux
|
||
|
rm -f Makefile Makefile.in
|
||
|
rm -f src/Makefile src/Makefile.in
|
||
|
rm -f include/libtorrent/Makefile include/libtorrent/Makefile.in
|
||
|
rm -f examples/Makefile examples/Makefile.in examples/.dep examples/.libs
|
||
|
rm -rf test/Makefile test/Makefile.in test/.dep test/.lib
|
||
|
rm -rf bindings/Makefile bindings/Makefile.in bindings/.dep bindings/.libs
|
||
|
rm -f bindings/python/Makefile bindings/python/Makefile.in
|
||
|
chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp
|
||
|
|
||
|
./autotool.sh
|
||
|
./configure --enable-python-binding --enable-examples=yes --enable-tests=yes --with-boost-system=mt --with-boost-python=mt --enable-tests
|
||
|
make V=1 -j8 dist check
|