cleanup tarball build script
This commit is contained in:
parent
a46bd839f0
commit
473b86a8e6
|
@ -1,25 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
make clean
|
||||
set -e
|
||||
set -x
|
||||
|
||||
python tools/clean.py
|
||||
|
||||
cd docs
|
||||
make clean
|
||||
make RST2HTML=rst2html.py
|
||||
make RST2HTML=rst2html-2.7.py
|
||||
cd ..
|
||||
|
||||
#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
|
||||
|
|
|
@ -13,6 +13,7 @@ def clean():
|
|||
'upnp.log',
|
||||
'natpmp.log',
|
||||
'bin',
|
||||
'build-aux',
|
||||
'.deps',
|
||||
'test_tmp_*',
|
||||
'bjam_build.*.xml'
|
||||
|
@ -33,6 +34,11 @@ def clean():
|
|||
'lib*.a',
|
||||
'Jamfile.rej',
|
||||
'Jamfile.orig',
|
||||
'autom4te.cache',
|
||||
'configure',
|
||||
'config.report',
|
||||
'config.log',
|
||||
'.lib',
|
||||
]
|
||||
|
||||
directories = [
|
||||
|
|
Loading…
Reference in New Issue