haiku/src/kernel/boot/Jamfile

22 lines
384 B
Plaintext
Raw Normal View History

SubDir OBOS_TOP src kernel boot ;
oldccflags = $(CCFLAGS) ;
{
CCFLAGS = ;
local x ;
for x in $(CCFLAGS) {
if $(x) != --nostdinc {
CCFLAGS += $(x) ;
}
}
}
SystemMain bootmaker : bootmaker.c ;
SystemMain bin2h : bin2h.c ;
SystemMain bin2asm : bin2asm.c ;
SystemMain makeflop : makeflop.c ;
CCFLAGS = $(oldccflags) ;
SubInclude OBOS_TOP src kernel boot arch ;