merge makefile fixes from RC_0_16

This commit is contained in:
Arvid Norberg 2012-04-11 04:53:45 +00:00
parent 9f0e892228
commit 1b67f4e815
2 changed files with 21 additions and 0 deletions

View File

@ -636,6 +636,7 @@ AC_CONFIG_FILES(
[include/libtorrent/Makefile]
[examples/Makefile]
[test/Makefile]
[tools/Makefile]
[bindings/Makefile]
[bindings/python/Makefile]
[bindings/python/setup.py]

20
tools/Jamfile Normal file
View File

@ -0,0 +1,20 @@
import modules ;
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
use-project /torrent : .. ;
if $(BOOST_ROOT)
{
use-project /boost : $(BOOST_ROOT) ;
}
project tools
: requirements
<threading>multi <library>/torrent//torrent
: default-build
<link>static
;
exe parse_hash_fails : parse_hash_fails.cpp ;