Moved AssembleNasm to MainBuildRules.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29805 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-03-30 15:11:55 +00:00
parent 328029e178
commit 0feb2904db
2 changed files with 10 additions and 10 deletions

View File

@ -167,6 +167,16 @@ rule StaticLibraryFromObjects
LibraryFromObjects $(1) : $(2) ;
}
rule AssembleNasm
{
Depends $(<) : $(>) ;
}
actions AssembleNasm
{
nasm -d $(ASFLAGS) -f elf -o $(1) $(2)
}
rule Ld
{
# Ld <name> : <objs> : <linkerscript> : <flags> ;

View File

@ -170,16 +170,6 @@ rule Object
}
}
rule AssembleNasm
{
Depends $(<) : $(>) ;
}
actions AssembleNasm
{
nasm -d $(ASFLAGS) -f elf -o $(1) $(2)
}
rule As
{
local flags ;