Boost logo

Boost-Build :

From: Vladimir Prus (ghost_at_[hidden])
Date: 2006-03-27 10:06:28


Hi Daniel,

> I tried to express it like this:
>
>
>
>
> rule MT { Depends $1 : $2 ; }
> actions MT
> {
> make_tables $(<)
> }
> MT $(OUTPUTS) : $(INPUTS) ;

Use

  make $(OUTPUTS) : $(INPUTS) : MT ;

> exe mytest : a.c ;
>
>
>
>
>
> But it complains about not being able to find "a.c". Perhaps I'm not
> allowed to mix classic Jam with bb?

Presecily. To invoke your custom 'action' on Boost.Build targets you need the
'make' rule provided by Boost.Build

-- 
Vladimir Prus
http://vladimir_prus.blogspot.com
Boost.Build V2: http://boost.org/boost-build2

Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk