2002-07-10 00:15:44 +04:00
|
|
|
SubDir OBOS_TOP src kernel boot ;
|
2002-10-24 00:13:17 +04:00
|
|
|
|
|
|
|
oldccflags = $(CCFLAGS) ;
|
|
|
|
{
|
|
|
|
CCFLAGS = ;
|
|
|
|
local x ;
|
|
|
|
for x in $(CCFLAGS) {
|
|
|
|
if $(x) != --nostdinc {
|
|
|
|
CCFLAGS += $(x) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2002-07-15 02:11:47 +04:00
|
|
|
SystemMain bootmaker : bootmaker.c ;
|
2002-07-09 16:24:59 +04:00
|
|
|
SystemMain bin2h : bin2h.c ;
|
|
|
|
SystemMain bin2asm : bin2asm.c ;
|
2002-07-15 02:11:47 +04:00
|
|
|
SystemMain makeflop : makeflop.c ;
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2002-10-24 00:13:17 +04:00
|
|
|
CCFLAGS = $(oldccflags) ;
|
|
|
|
|
2002-07-10 00:15:44 +04:00
|
|
|
SubInclude OBOS_TOP src kernel boot arch ;
|