$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] generate a relocatable module?
From: Laurent Morichetti (l_m_at_[hidden])
Date: 2009-02-18 17:50:23
>I think the following should work:
> local objs ;
> for source in [ glob *.cpp ]
> {
> objs += [ obj $(source:S=.obj) : $(source) ] ;
> }
> alias all_objs : $(objs) ;
>
>Does this help?
>- Volodya
Yes, works perfectly.
Thank you.