$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-build] builtin rule for assembler?
From: Thorsten Ottosen (thorsten.ottosen_at_[hidden])
Date: 2008-11-04 11:13:41
Hi,
I was looking for a rule that produced the assembler output? I tried
something like
local source = [ glob *.cpp ] ;
for local s in $(source)
{
obj $(s:B) : $(s) ;
exe $(s:B).exe : $(s) ;
asm $(s:B).asm : $(s) ;
}
but there is apparently no asm rule.
Has anybody got a rule for this lying around?
Thanks in advance
-Thorsten