project
	: 
	requirements 
	<include>../../boost
#	<cflags>"-O3"
	<threading>multi
	:
	default-build release
	;

install dist 
	: .//mutex_test
	: <location>bin ;

lib boost 
	: 
	: 
	<file>/usr/local/lib/libboost_thread.a 
	<file>/usr/local/lib/libboost_date_time.a 
	;

exe mutex_test
	:
	[ glob *.cpp ]
	.//boost
	;

